Spring MVC在尝试呈现JSP时返回405

时间:2012-01-31 19:02:45

标签: java spring spring-mvc

我最近一直在尝试使用带有JSP网页的Spring MVC为我们的Spring项目实现一个简单的健康检查服务。这是我第一次使用Spring MVC并且我一直在使用this Spring MVC tutorial.问题似乎是当它试图渲染我的页面时,它返回405并且我不明白为什么。如果有人能帮助我,我将不胜感激。

现在我的web.xml

中有一个servlet和映射设置如下
<servlet>
  <servlet-name>health</servlet-name>
  <servlet-class>
     org.springframework.web.servlet.DispatcherServlet
  </servlet-class>
  <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
  <servlet-name>health</servlet-name>
  <url-pattern>/health</url-pattern>
</servlet-mapping>

我的health-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:oxm="http://www.springframework.org/schema/oxm"
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-2.5.xsd
    http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd">

<context:component-scan base-package="com.mycompany" />

<import resource="classpath*:applicationContext.xml" />

<bean id="viewResolver"         
             class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/health/" />
    <property name="suffix" value=".jsp" />
</bean>
</beans> 

我也有一个简单的控制器设置:

@Controller
public class HealthcheckEndpoint {
    @RequestMapping(value = "/health", method = RequestMethod.GET)
    public String checkHealth(ModelMap mav) {
        // Some business logic
        return "healthcheck";
    }
}

此外,我在.jsp中设置了WEB-INF/health/healthcheck.jsp页面。

我已启用org.springframework.web日志记录,这是我收到405响应之前的最后两行:

[2012-01-31 12:52:04,770] DEBUG - org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(236) | Forwarding to resource [/WEB-INF/health/healthcheck.jsp] in InternalResourceView 'healthcheck'
[2012-01-31 12:52:04,780] DEBUG - org.springframework.web.servlet.FrameworkServlet.processRequest(674) | Successfully completed request

更新

也在我的web.xml中定义:

<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath*:applicationContext-resources.xml</param-value>
</context-param>

在我的applicationContext-resources.xml我确实有context:annotation-config行。

注意:此健康servlet是我们现有服务的补充。因此,现在我们的org.springframework.web.servlet.DispatcherServlet中定义了2个web.xml servlet。我不知道这是不是问题,但它似乎有效,因为我可以调试到两个端点。

2 个答案:

答案 0 :(得分:1)

根据你的配置,行为描述和日志文件,我猜想问题不在于jsp。我猜你的JSP(HTML)会加载一些触发405的其他资源。

答案 1 :(得分:0)

尽管我的笔记说的是,其他一个servlet正在通过这个url请求吃掉输出。我已导入此URL re-write tool,现在一切正常。