gpt4 book ai didi

java - 如果 is in application context instead of dispatcher context,@RequestMapping 注释不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 06:54:49 29 4
gpt4 key购买 nike

我正在使用带有 和 @Autowired 的 Spring 2.5.6 版本。

虽然我在调度程序上下文中使用 SimpleUrlHandlerMapping ,但一切正常 - Autowiring 工作正常,路由以正确的方式选择 Controller 等。

<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) 开始向我显示“未找到带有 URI 的 HTTP 请求的映射”错误。

我发现解决方案是在我的调度程序上下文配置中插入 " " 元素。

<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>

我觉得这可能是一个糟糕的解决方案,因为我的应用程序上下文配置文件中有类似的 " " 来一次性处理所有其他依赖项。

<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>

问题是为什么应用程序级别的 没有选择正确的 @RequestMapping 注释?我知道我可以在应用程序级别将 base-package 的组件扫描限制为某个包,但我的目的是在应用程序级别仅使用一个component-scan,仅此而已。我真的必须使用两个不同的 component-scan 元素吗?或者我可能遗漏了一些东西?

这是我的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>

最佳答案

尝试将此标签添加到您的应用程序上下文中:

<mvc:annotation-driven />

编辑

对于 Spring 2.5 尝试将注释配置标记、DefaultAnnotationHandlerMappingAnnotationMethodHandlerAdapter bean 添加到您的应用上下文:

<context:annotation-config />
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>

关于java - 如果 <context :component-scan/> is in application context instead of dispatcher context,@RequestMapping 注释不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22893772/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com