0

私は 1 つの Spring MVC プロジェクトを持っています。それは 1 つの Restful サーブレットと 1 つの静的 Web サイト ( /WebContent/portal/.

Restful URI : for と同様に/service/login、そのコントローラーは次の場所に配置されますcom.test.testap.restful.auth

静的リソース URLS : index.html<mvc:resources mapping="/portal/**" location="/portal/" />などの静的ファイルを提供するために使用します。

私が会った問題

シナリオ 1 : が削除<mvc:resources mapping="/portal/**" location="/portal/" />されると、Restful API URL は正常に機能します。しかし、/portal/index.html期待される にアクセスできません。

シナリオ 2 : を追加する<mvc:resources mapping="/portal/**" location="/portal/" />と、/portal/index.html機能しますが、すべての Restful URI に対して Http Status=404 が返されます。

PS:<mvc:resources mapping="/portal/**" location="/portal/" />ファイルの最後にWEB-INF/spring/test-restful-servlet.xml.

を追加<mvc:resources>すると、すべての URL が発生するようです (Restful URL を含めてリソースとして提供されます)。しかし、私が間違ったことは何も見つかりません。

私は多くの解決策を試しましたが、それらのすべてが機能しません (別のサーブレットを宣言するなどurl-pattern=/portal/*)

どんな助けにも感謝します。

以下は私の設定ファイルです:

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>Restful Application</display-name>

    <servlet>
        <servlet-name>test-restful</servlet-name>
        <servlet-class>
            org.springframework.web.servlet.DispatcherServlet 
        </servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
        <param-value>WEB-INF/spring/test-restful-servlet.xml</param-value>
        </init-param>        
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>test-restful</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/security.xml</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
</web-app>

WEB-INF/spring/test-restful-servlet.xml :

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:task="http://www.springframework.org/schema/task"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/task
        http://www.springframework.org/schema/task/spring-task-3.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context.xsd">



    <context:component-scan base-package="com.test.testap.restful.controller, com.test.testap.restful.auth" />

    <bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <property name="maxUploadSize" value="100000000" />
    </bean>

<bean id="stringConverter" class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
        <list>
                <value>text/plain;charset=UTF-8</value>
        </list>
</property>
</bean>
<bean id="jsonConverter"
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"></bean>
<bean
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
        <list>
                <ref bean="stringConverter"/>
                <ref bean="jsonConverter" />
        </list>
</property>
</bean>
<import resource="db-connectors.xml" />

<mvc:resources mapping="/portal/**" location="/portal/" />
</beans>

以下は、 pom.xmlで宣言された依存関係です。

<dependencies>
  <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>3.8.1</version>
    <scope>test</scope>
  </dependency>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>4.3.1.RELEASE</version>
  </dependency>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-aop</artifactId>
    <version>4.3.1.RELEASE</version>
  </dependency>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>4.3.1.RELEASE</version>
  </dependency>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>4.3.1.RELEASE</version>
  </dependency>

  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>3.2.1.RELEASE</version>
  </dependency>

  <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
  </dependency>
</dependencies>
4

1 に答える 1