Struts 1.2 で記述された既存の webapp があり、Spring 3-Rest を使用して機能を web サービスとして公開しようとしています。
頭を包むことができない基本的な問題に遭遇しました
これは、すべてのストラットのものを取り除いた私の web.xml です。
<?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 があります
Tomcat 7にデプロイすると、これが得られます
情報: Spring FrameworkServlet 'app' を初期化しています
コンソールにエラーなし。
競合するすべての jar をビルド パスから削除し、春の dist と commons-logging-1.1 だけを持っています。
server/Test/dummy にアクセスすると 404 が発生する
誰が私がやっている愚かな間違いを指摘できますか?