对于第三方应用程序上的所有URL请求(除了/),Spring应用程序返回404(在localhost上正常工作)

时间:2011-11-11 12:16:57

标签: java spring http-status-code-404 web.xml

在我的Spring应用程序中,我有以下内容:

@RequestMapping(method = RequestMethod.GET, value = "/")
public String goHome(ModelMap map){
    map.addAttribute("content", "home.jsp");
    return "index";
}


@RequestMapping(method = RequestMethod.GET, value = "register")
public String getRegisterPage(ModelMap map){
    map.addAttribute("content", "register.jsp");
    return "index";
}

在localhost上,我可以分别以 localhost:8080 localhost:8080 / register 的形式访问它们。但是当我在第三方服务器上部署它们时, domain.com 工作正常但 domain.com/register (以及除domain.com之外的所有其他链接)都会产生404

Not Found

The requested URL /register was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

注意:
- localhost和domain.com都运行在Tomcat 5.5上,并具有Servlet版本2.4
- 我甚至将RequestMapping值更改为 value =“/ register”但没有改变

的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Adsense</display-name>
  <listener>
    <listener-class>com.adsense.connection.MySqlDBPooling</listener-class>
  </listener>
  <servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

我在这里得到答案:Tomcat 404 Not Found error

  

问题是在tomcat的生产环境中   前面是一个apache httpd,它没有将请求转发给tomcat   对于形式/ foobar形式的网址(没有扩展名)。 Apache没有   知道如何处理这些URL并尝试将它们作为静态服务   来自磁盘的文件。文件不在那里,所以它试图执行   配置错误的404规则(配置的404文件是   本身也缺失了 - 但这是另一个问题。)

     

解决方案:

     

为所有servlet分配扩展名并指定为apache。   例如strdo(就像struts一样)所以你的servlet变成了/foobar.do。你会   然后需要让你的系统管理员指定* .do去tomcat。   请求您的sysadmin配置apache以将所有请求发送到tomcat   除了那些静态文件。 E.g * .jpg,* .png,* .css,* .js等

在我的情况下,它与像/register.do这样的网址一起工作正常:)