Spring MVC: спокойный URL не найден, но ресурс URL работает - PullRequest
0 голосов
/ 06 ноября 2018

У меня есть один проект Spring MVC, он обслуживает один сервлет Restful и один статический веб-сайт (который находится в /WebContent/portal/.

Restful URI : как и для /service/login, контроллер находится в com.test.testap.restful.auth

Статические URL-адреса ресурса : использует <mvc:resources mapping="/portal/**" location="/portal/" /> для обслуживания статических файлов, таких как index.html .

Проблема, с которой я столкнулся :

Сценарий 1 : при удалении <mvc:resources mapping="/portal/**" location="/portal/" /> URL-адреса Restful API работают нормально. Но не могу получить доступ к /portal/index.html, который ожидается.

Сценарий 2 : Когда добавляет <mvc:resources mapping="/portal/**" location="/portal/" />, /portal/index.html работает, но возвращает Http Status = 404 для всех Restful URI.

PS: вы увидите <mvc:resources mapping="/portal/**" location="/portal/" /> в конце файла WEB-INF/spring/test-restful-servlet.xml.

Похоже, что при добавлении <mvc:resources> все URL будут вызваны (включая URL-адреса Restful будут использоваться в качестве ресурсов). Но не могу найти ничего, что я сделал не так.

Я перепробовал много решений, но все они не работают (например, объявить другой сервлет для 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 / весна / тест-успокоительные-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>

1 Ответ

0 голосов
/ 06 ноября 2018

В вашей конфигурации test-restful-servlet.xml добавьте

<mvc:annotation-driven>

объявляет о поддержке компонентов, управляемых аннотациями.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...