0

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();
  }
}
4

1 に答える 1

1

サーブレット マッピングがありません

<servlet-mapping>
    <servlet-name>springapp</servlet-name>
    <url-pattern>*.do</url-pattern>
</servlet-mapping>

あなたの URL には拡張子*.doがありますが、にマッピングされていませんspringapp。したがって、上記の構成をweb.xml

于 2013-03-05T12:39:10.040 に答える