JBoss サーブレット エンジンで Java/Spring/Maven を使用し、MultiActionController を利用して、REST API のセットアップに取り組んでいます。
I want to do is to group requests to a Single controller
たとえば、 allには、さまざまな/requestA goes to Controller a
リクエストに対していくつかのメソッドがあります。 /requestA/add.do goes to add-function
/requestA/delete.do goes to delete-function.
Spring のドキュメントを読んでいます: http://static.springsource.org/spring/docs/3.0.0.M3/spring-framework-reference/html/ch18s02.html および http://static.springsource.org /spring/docs/3.0.0.M3/spring-framework-reference/html/ch16s03.html#mvc-controller-multiaction
しかし、xml のディスパッチャ構成に問題があります。Spring MVCでこれを達成する方法の良い例を知っている人はいますか?
springapp-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<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-3.0.xsd">
<bean name="/test/*.do" class="org.test.TestControllerA" />
</beans>
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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>springTest</display-name>
<servlet>
<servlet-name>springapp</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springapp</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>
およびJavaコントローラー
public class TestControllerA extends MultiActionController {
@RequestMapping("/TEST")
public ModelAndView add(HttpServletRequest request, HttpServletResponse response) throws Exception {
System.out.println("Test42");
return new ModelAndView();
}
}