我创建了一个Java项目,它具有处理url的spring控制器
这是控制器代码
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
@EnableWebMvc
@Controller
public class SmartContentValidator {
@RequestMapping(value = "/validate")
public String validate() {
System.out.println("Yo");
return "YO";
}
}
然后我将上面的java项目导出为jar文件。 然后创建了一个新的Web项目,并在构建路径中添加了上面的jar。这是web.xml和dispatcher-servlet.xml
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<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"
id="WebApp_ID" version="3.0">
<display-name>SmartContentValidatorTest</display-name>
<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>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
调度-servlet.xml中
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd">
<context:component-scan base-package="com" />
<context:annotation-config/>
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/views/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
现在我尝试点击http://localhost:8080/project_name/validate
它显示在浏览器上找不到404,
WARNING: No mapping found for HTTP request with URI [/SmartContentValidatorTest/validate/] in DispatcherServlet with name 'dispatcher'
在我的eclipse控制台中。
问题是什么?我错过了什么吗?
修改
答案 0 :(得分:1)
通常这是由Spring无法正确找到您的控制器引起的。如果启用DEBUG日志记录,Spring将记录启动应用程序时注册的bean。
如果它正确加载你的控制器,那么检查你的根路径是否正确(我认为这是你的战争名称,默认情况下),这应该再次显示在启动期间的日志记录中。
答案 1 :(得分:1)
我不确定它是否对您的案例有帮助,但我认为在独立应用程序中会出现问题,因为@EnableWebMvc
应该与Java配置一起使用 - 用@Configuration
注释的类,而不是{ {1}} bean。
当您使用xml配置时,可以尝试放置@Controller
,有关详细信息,请参阅https://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html#mvc-config-enable。
您还需要提供应用程序上下文作为调度程序servlet参数,如示例http://docs.spring.io/spring-flex/docs/1.0.x/reference/html/ch02s02.html中所示:
<mvc:annotation-driven />