我的jsps在WEB-INF / jsp /下,以下是我的web.xml:
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Checkout</display-name>
<servlet>
<servlet-name>myservlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>myservlet</servlet-name>
<url-pattern>*.action</url-pattern>
</servlet-mapping>
</web-app>
以及我尝试访问的页面product.jsp的映射:
@Controller
@RequestMapping("/product.action")
public class ProductController {
/**
* Show the product selection form
*
* @return
*/
@RequestMapping(method=RequestMethod.GET)
public String get() {
return "products.jsp";
}
}
尝试从以下链接访问该页面时:
http://localhost:8080/myapp/product.action
我在浏览器中收到404
,我在控制台中收到以下警告:
Jun 28, 2012 10:55:23 AM org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping found for HTTP request with URI [/myapp/product.action] in DispatcherServlet with name 'myservlet'
我在配置中遗漏了什么? 请指教,谢谢。
编辑:我尝试将viewResolver bean添加到applicationContext但没有运气:
<?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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="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-3.1.xsd">
<context:component-scan base-package="com.myapp"/>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
答案 0 :(得分:3)
遵循 Sunil 提到的规则。我在你的spring配置xml中看到一个你没有
的问题<mvc:annotation-driven />
您需要注册Controller
以及
<context:component-scan base-package="com.myapp"/>
答案 1 :(得分:2)
当您指定RequestMapping时,URI不应具有扩展名。在搜索URI映射时,Dispatcher servlet将从请求URI中省略它。
使用@RequestMapping("/product")
它应该有用。
当您使用视图解析器时,第二件事就是返回JSP文件的名称。不要附加.jsp扩展名,InternalViewResolver会为你做。
答案 2 :(得分:1)
问题是没有检测到控制器。
我将基础包从com.myapp
更改为com.myapp.controller
,现在工作正常。
答案 3 :(得分:0)
使用它 的类= “org.springframework.web.servlet.view.UrlBasedViewResolver”强> 而不是 class =“org.springframework.web.servlet.view.InternalResourceViewResolver”
在您的应用程序上下文bean中。
答案 4 :(得分:0)
如果您在上下文xml中使用viewResolver,则应将get方法返回statemant更改为“products”并确保文件夹层次结构正确
答案 5 :(得分:-1)
检查软件包名称spring-servlet.xml,是否正确拼写。这可能是问题所在。我在启动Spring MVC时遇到了