我使用版本2.5.6的Spring和< context:component-scan />和@Autowired。
虽然我在我的调度程序环境中使用 SimpleUrlHandlerMapping ,但一切正常 - 自动装配工作正常,路线正在以正确的方式选择控制器等。
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="urlMap">
<map>
<entry key="/login/login.html" value-ref="loginController" />
<entry key="/secured/index/index.html" value-ref="indexController" />
</map>
</property>
</bean>
然后我决定使用 @RequestMapping 在XML文件中配置路由。
@Controller("loginController")
public class LoginController {
@RequestMapping("/login/login.html")
public ModelAndView login() {
ModelAndView model = new ModelAndView("login/login");
return model;
}
}
当我重写代码以使用 @RequestMapping 时,问题就开始了。服务器(Tomcat)开始给我一个&#34; 找不到带HTTP的HTTP请求的映射&#34;错误。
我发现解决方案是插入&#34;&lt; context:component-scan base-package =&#34; com.example.springwebapp.controller&#34;我的调度程序上下文配置中的/&gt;&#34; 元素。
<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"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<!-- ============== -->
<!-- URL Mapping -->
<!-- ============== -->
<!-- <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> -->
<!-- <property name="urlMap"> -->
<!-- <map> -->
<!-- <entry key="/login/login.html" value-ref="loginController" /> -->
<!-- <entry key="/secured/index/index.html" value-ref="indexController" /> -->
<!-- </map> -->
<!-- </property> -->
<!-- </bean> -->
<!-- ============ -->
<!-- viewResolver -->
<!-- ============ -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
<context:component-scan base-package="com.example.springwebapp.controller" />
</beans>
我觉得这可能是一个糟糕的解决方案,因为我有类似的&#34;&lt; context:component-scan base-package =&#34; com.example.springwebapp&#34;我的应用上下文配置文件中的/&gt;&#34; 可以一次性处理所有其他依赖项。
<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-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<import resource="./spring-security.xml"/>
<import resource="../database/DataSource.xml"/>
<import resource="../database/Hibernate.xml"/>
<context:component-scan base-package="com.example.springwebapp" />
</beans>
问题是为什么&lt; context:component-scan /&gt; 在应用程序级别没有选择 @RequestMapping 注释吗?我知道我可以将应用级别的 base-package 的组件扫描限制到某个包,但我的意图是在应用级别只使用一个组件扫描而已。我是否真的必须使用两个不同的组件扫描元素,或者我错过了什么?
这是我的 web.xml :
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
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>SpringWebApp</display-name>
<!-- ========== -->
<!-- Spring MVC -->
<!-- ========== -->
<welcome-file-list>
<welcome-file>welcome.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Application</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/spring/mvc-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Application</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/config/spring/application-context.xml
</param-value>
</context-param>
<!-- =============== -->
<!-- Spring Security -->
<!-- =============== -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
答案 0 :(得分:1)
尝试将此标记添加到您的应用上下文中:
<mvc:annotation-driven />
修改强>
对于Spring 2.5
尝试添加注释配置标记,DefaultAnnotationHandlerMapping
和AnnotationMethodHandlerAdapter
bean到您的应用上下文:
<context:annotation-config />
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>
答案 1 :(得分:0)
在阅读了我的问题的答案后(非常感谢 Jean-Philippe Bond )我决定改变我的方法。我知道有两个单独的上下文:component-scan 是正确的方法。
现在我的应用上下文已经:
<context:component-scan base-package="com.example.springwebapp" use-default-filters="false">
<context:include-filter expression="org.springframework.stereotype.Service" type="annotation"/>
<context:include-filter expression="org.springframework.stereotype.Repository" type="annotation"/>
</context:component-scan>
我的调度程序上下文已经:
<context:component-scan base-package="com.example.springwebapp" use-default-filters="false">
<context:include-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>