web.xml
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>Archetype Created Web Application</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/spring/spring-ctx.xml</param-value>
</context-param>
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/spring/spring-mvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
spring-ctx.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.prs.dps"/>
</beans>
spring-mvc
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<mvc:annotation-driven enable-matrix-variables="true"/>
<bean
class="org.springframework.web.servlet.view.
InternalResourceViewResolver" p:prefix="/views/" p:suffix=".jsp" />
</beans>
controller
package com.prs.dps;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class Test {
@RequestMapping(value = "/toindex",method = RequestMethod.GET)
public String toIndex(){
return "index";
}
}
這個專案裡有兩個容器。
Spring application context
和Spring webapplication context
。Spring application context
和Spring webapplication context
。分别对应两个配置文件
applicationContext.xml
和{servletName}-servlet.xml
。他们之间并不会共享管理的对象。
通过你的配置文件可以看出只有根容器
Spring application
进行了扫描,Spring MVC
的容器(webapplication context
)中没有管理的对象。而
Spring 根容器
(application context
分別對應兩個設定檔applicationContext.xml
和{servletName}-servlet.xml
。 他們之間並不會共享管理的對象。透過你的設定檔可以看出只有根容器
Spring application
進行了掃描,Spring MVC
的容器(webapplication context
)中沒有管理的對象
。 🎜而Spring 根容器
(application context
)🎜不具備處理映射的功能,無法處理請求映射🎜。 🎜 🎜 🎜所以配置應該是這樣。 🎜修改spring-mvc.xml如下:
改為這個試下:
墮天使008的解決方法是對的
補充下·
DispatcherServlet
載入Web元件的beanDispatcherServlet
加载Web组件的bean·
ContextLoaderListener
加载中间层和数据层的bean组件补充下
· 建议把spring mvc项目中controller和service组件的包分开
· 建议题主在
spring-mvc.xml
·ContextLoaderListener
載入中間層和資料層的bean元件· 建議載入中間層和資料層的bean元件
補充下🎜 · 建議把spring mvc專案中controller和service組件的套件分開🎜 · 建議主題主在spring-mvc.xml
中加上靜態資源處理器🎜 🎜如果還沒有解決問題,推薦閱讀 spring mvc helloworld example 實例比較簡明清楚,也可以下載實例項目🎜