В DispatcherServlet не найдено сопоставление без использования расширения - PullRequest
0 голосов
/ 02 февраля 2012

Я получаю сообщение «Запрошенный ресурс () недоступен».при переходе на URL, который я сопоставил с помощью DispatcherServlet.Ранее он работал, когда у меня была настройка сопоставления для использования расширения .do, но когда я сопоставляю без расширения, он не работает.

Контроллер:

@Controller
public class WodServiceController {

    @Autowired
    private WodService wodService;

    @RequestMapping("/json/wod")
    @ResponseBody
    public Word getWord(HttpServletRequest request, HttpServletResponse response) {
        return wodService.getWordOfTheDay();
    }
}

dispatcher-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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
 http://www.springframework.org/schema/beans 
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
 http://www.springframework.org/schema/context
 http://www.springframework.org/schema/context/spring-context-3.0.xsd
 http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

<mvc:annotation-driven />
<context:component-scan base-package="foobar.controller" />

<!-- View Resolvers -->

<bean id="defaultViewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver"
    p:viewClass="org.springframework.web.servlet.view.JstlView"
    p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" />

</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>Services</display-name>
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        classpath:commonBeans.xml
    </param-value>
</context-param>

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

<servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/json/*</url-pattern>
</servlet-mapping>

</web-app>

Если для отображения установлено значение * .do, а для RequestMapping установлено значение wod.do, то оно будет работать нормально.

РЕДАКТИРОВАТЬ:

В журналах, когда я захожу на этот URL, отображается сообщение

Не найдено сопоставление для HTTP-запроса с URI [/ foobar / json / wod]DispatcherServlet с именем dispatcher

EDIT 2: я добавил AlwaysUseFullPath к обработчику:

<bean id="annotationHandlerMapping"
    class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
    <property name="alwaysUseFullPath" value="true" />  
</bean>

1 Ответ

1 голос
/ 16 июля 2012

Это было связано с тем, как был настроен мой редирект apache.

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