这可能很简单,但我猜错了。问题归结为:我正在尝试使用HelloController来显示“/WEB-INF/hello.jsp”。不幸的是,我在尝试访问http://example.com/app/hello
时获得了404这是代码。可能很容易解决。
的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>app</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.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>
<load-on-startup>1</load-on-startup>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
的applicationContext.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:security="http://www.springframework.org/schema/security"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
<context:component-scan base-package="web.controller" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/" p:suffix=".jsp" />
</beans>
HelloController.java:
@Controller
public class HelloController {
@RequestMapping(value="/hello", method=RequestMethod.GET)
public ModelAndView helloWorld() {
ModelAndView mv = new ModelAndView();
mv.setViewName("hello");
return mv;
}
}
的hello.jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Hello</title>
</head>
<body>
<p>Hello</p>
</body>
</html>
更新:为每个请求添加了错误消息。
错误404 - 从RFC 2068超文本传输协议中找不到 - HTTP / 1.1: 10.4.5 404 Not Found
服务器未找到与Request-URI匹配的任何内容。没有 指示该条件是暂时的还是 永久的。
如果服务器不希望提供此信息 客户端可以使用状态代码403(Forbidden)代替。该 如果服务器知道,应该使用410(Gone)状态代码 一些内部可配置的机制,即旧资源 永久不可用且没有转发地址。
答案 0 :(得分:8)
这个问题(在web.xml
中):
<url-pattern>/*</url-pattern>
这会将所有请求重定向到Spring servlet,包括您从控制器到JSP的请求。从本质上讲,控制流程将从控制器循环回到Spring。您需要缩小范围,以便JSP的请求直接转到底层容器,而不是Spring。
尝试将其更改为
<url-pattern>/app*</url-pattern>
再试一次。您可能需要使用前导和尾随板条来使其工作(例如<url-pattern>/app*</url-pattern>
或@RequestMapping("hello")
等)
答案 1 :(得分:1)
请检查您的所有控制器类/子包或其他类是否与您在以下行中提到的包相同:
<context:annotation-config />
<context:component-scan base-package="com.kfs" />
答案 2 :(得分:0)
正如您在评论中提到的那样,日志不会为您提供控制器映射到特定网址的信息。所以我认为prblem在控制器中。
确保控制器在“mil.army.retain.web.controller”包中并打开annotation-config:
<context:annotation-config />