我有一个用 Struts 1.2 编写的现有 webapp,我正在尝试使用 Spring 3-Rest 将功能公开为 web 服务。
我遇到了一个我无法解决的基本问题
这是我的 web.xml 剥离了所有 struts 的东西。
<?xml version="1.0" encoding="UTF-8"?>
<display-name>Test</display-name>
<servlet>
<servlet-name>app</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>app</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
我的 app-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<mvc:annotation-driven/>
<context:component-scan base-package="com.base.rest">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<beans:bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/JSP/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
</beans:beans>
我在 com.base.rest 中有一个基本控制器
package com.base.rest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class DummyController {
@RequestMapping(value="/dummy",method=RequestMethod.GET)
public String doSomething(){
System.out.println("Dummy");
return "hello";
}
}
我在 WebRoot/JSP 文件夹中有 hello.jsp,它只打印 Dummy
当部署在 tomcat 7 上时,我得到了这个
信息:初始化 Spring FrameworkServlet 'app'
控制台上没有任何错误。
我已经从构建路径中删除了所有有冲突的 jar,只有 spring dist 和 commons-logging-1.1
访问 server/Test/dummy 时出现 404
谁能指出我在做什么愚蠢的错误?