我的jsp页码:
<li><a href="viewAllProducts.htm"><i class="fa fa-angle-double-right"></i>View All Products</a></li>
我的控制器代码:
@RequestMapping(value = "viewAllProducts.htm",method = RequestMethod.GET )
public ModelAndView getProductById1(ModelAndView mav,HttpServletRequest request)
{
System.out.println("------------------------------------------------");
mav.setViewName("ViewAllProductsPage");
return mav;
}
当调用此操作时,sout正在apache tomcat输出窗口中打印,但是在ModelAndView对象中正在设置页面。 任何人都可以提供解决方案吗?
浏览器显示以下错误:
HTTP Status 404 - /AntixxWeb/WEB-INF/jsp/viewAllProducts.jsp
type Status report
message /AntixxWeb/WEB-INF/jsp/viewAllProducts.jsp
description The requested resource is not available.
Apache Tomcat/8.0.3
答案 0 :(得分:0)
检查您为相应网页访问的网址。 您似乎在application-context.xml / -servlet.xml中错误配置了项目资源。
您可以使用以下配置
<beans xmlns="http://www.springframework.org/schema/beans"
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"
xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>
据我所知,网址应该像http://localhost:8080/project_name/viewAllProducts.htm.
答案 1 :(得分:0)
返回模型视图对象,将其替换为您想要的页面名称 在该页面中,您可以获取获取模型视图对象对象