我正在尝试迁移我们的应用程序以使用Spring 4功能。所以我慢慢地尝试删除XML配置(web.xml,applicationContext.xml,dispatcher-servlet.xml)和替换为Java注释。我花了很多时间在这个问题上,我也找不到stackoverflow中的解决方案。我收到以下错误:
org.springframework.web.servlet.PageNotFound - [] [行号 - 1136]在DispatcherServlet中找不到带有URI [/ WP / xhStatus]且名称为“dispatcher”的HTTP请求的映射。 “http://localhost:8080/WP/xhStatus”的POST请求导致404(null);调用错误处理程序 org.springframework.web.client.HttpClientErrorException:404 null
从这条错误消息中,我试图查看以下网址中的Spring API包 org.springframework.web.servlet 中是否有 PageNotFound ,但没有此类或该包中提供的界面: http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/servlet/package-summary.html
我只是添加两个类 WebAppInitializer.java & WebConfig.java 和已删除 web.xml 和 dispatcher-servlet.xml 中的一些代码。
WebAppInitializer.java
package com.mycompany.wp.web.config;
public class WebAppInitializer implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
AnnotationConfigWebApplicationContext applicationContext = new AnnotationConfigWebApplicationContext();
applicationContext.setConfigLocations("com.mycompany.wp.web.config.WebConfig");
servletContext.addListener(new ContextLoaderListener(applicationContext));
servletContext.setInitParameter("contextConfigLocation", "/WEB-INF/applicationContext.xml");
ServletRegistration.Dynamic dispatcherServlet = servletContext.addServlet("dispatcher", new DispatcherServlet(applicationContext));
dispatcherServlet.setLoadOnStartup(1);
dispatcherServlet.addMapping("/");
}
}
WebConfig.java
package com.mycompany.wp.web.config;
@Configuration
@EnableWebMvc
@ComponentScan(basePackages="com.mycompany.wp")
public class WebConfig extends WebMvcConfigurerAdapter{
@Bean
public InternalResourceViewResolver viewResolver() {
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setViewClass(JstlView.class);
viewResolver.setPrefix("/views/");
viewResolver.setSuffix(".jsp");
return viewResolver;
}
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
}
}
我从 web.xml
中删除此部分<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml,/WEB-INF/dispatcher-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
我还从 dispatcher-servlet.xml 删除以下部分:
<mvc:resources mapping="/resources/**" location="/resources/" />
<context:component-scan base-package="com.mycompany.wp"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/views/" />
<property name="suffix" value=".jsp" />
</bean>
现在 dispatcher-servlet.xml 只有一个条目:
<mvc:annotation-driven />
我的应用程序中仍然包含所有XML文件(web.xml,dispatcher-servlet.xml和applicationContext.xml),因为它们仍然有其他信息。但是,applicationContext.xml没有任何变化。
我正在尝试使用 / xhStatus 的请求映射来调用REST服务(Spring MVC Controller),但我没有更改任何内容。早些时候,我的REST服务可以通过上面提到的URL访问,但现在我无法访问。
在迁移到Java配置之前,我的应用程序过去常常适用于XML配置。可能,DispatcherServlet无法找到我的Spring Controller。
如果有人可以帮助我,那就太棒了。谢谢。
答案 0 :(得分:0)
我解决了这个问题。我在 WebAppInitializer.java
中犯了一个错误我用过:
applicationContext.setConfigLocations("com.mycompany.wp.web.config.WebConfig");
现在我用以下内容替换了该行:
applicationContext.register(com.mycompany.wp.web.config.WebConfig.class);
工作正常。