我正在尝试使用Servlet 3.0在Tomcat 7.0.42上部署Spring Web应用程序。该应用程序的默认主页正常打开,但当我尝试从家中导航时,我得到的是404.请在下面找到详细信息。
我的servlet-contex.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="com.portfolio.chota" />
</beans:beans>
我的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
这是我的控制器
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model,HttpSession session,HttpServletRequest request) {
// Do some stuff
return "home";
}
@RequestMapping(value = "/profile", method = RequestMethod.GET)
public String profile(Locale locale, Model model,HttpServletRequest request) {
String pAge = (String)request.getSession().getAttribute("SAVINGSAMOUNTTYPE");
if(pAge==null || pAge.equals(""))
return "redirect:/sessionOut";
else
return "profile";
}
当我访问应用程序时,主页正在加载正常,但当我尝试从家中移动到/配置文件时,我得到以下404
Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 404 /abc/profile
问题已解决
我发现问题出在这些位置的 cp_jkmount.conf 文件中 -
此处 xyz 是用户&amp; domain.com 是您尝试设置此域名的域名。
这被设置为mount * .jsp&amp; * .do文件,使得具有这些扩展名的请求仅被发送到Tomcat守护程序。由于我们的应用程序是一个没有任何扩展请求的Spring应用程序,这就是为什么这些请求没有被提供给Tomcat。
这些是cp_jkmount.conf中的原始条目
JkMount /*.jsp ajp13
JkMount /*.do ajp13
我现在已将此更新为
JkMount /* ajp13
由于此域只托管基于纯Java的应用程序,这就是为什么我的所有请求现在都提供给Tomcat&amp;因此我的问题已经解决了。
希望这也有助于你。