我是SPring 3 MVC的新手,并尝试配置基于java的Spring 3 MVC应用程序。我正在为我的应用程序使用servlet 2.5容器。以下是我的尝试。
以下是我的Maven Based项目结构:
的web.xml
<web-app 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"
version="2.5">
<display-name>Archetype Created Web Application</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</init-param>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>com.sprmvc.init.WebAppConfig</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
</web-app>
WebAppConfig.java
@Configuration //Specifies the class as configuration
@ComponentScan("com.sprmvc") //Specifies which package to scan
@EnableWebMvc //Enables to use Spring's annotations in the code
public class WebAppConfig {
@Bean
public UrlBasedViewResolver setupViewResolver() {
UrlBasedViewResolver resolver = new UrlBasedViewResolver();
resolver.setPrefix("/WEB-INF/pages/");
resolver.setSuffix(".jsp");
resolver.setViewClass(JstlView.class);
return resolver;
}
}
LinkController.java
@Controller
public class LinkController {
@RequestMapping(value="/hello")
public ModelAndView goToHelloPage() {
ModelAndView view = new ModelAndView();
view.setViewName("hello"); //name of the jsp-file in the "page" folder
String str = "MVC Spring is here!";
view.addObject("message", str); //adding of str object as "message" parameter
return view;
}
}
的index.jsp
<html>
<body>
<h1>Home page</h1>
<p>This is a Home Page.</p>
<p><a href="hello.html">Hello world link</a></p>
</body>
</html>
的hello.jsp
<html>
<body>
<p>Hello world: ${message}</p>
<p>Well done!</p>
</body>
</html>
当我运行应用程序时,index.jsp
正在正确显示。但是,点击link
页面中的index.jsp
,我就会收到404。
点击link
页面的index.jsp
时触发的网址为http://localhost:8055/SpringMVCConfig/hello.html
,因为该资源不可用,因此出现404错误。
基于java的配置存在一些错误,导致prefix
和suffix
无效。请指教。
答案 0 :(得分:1)
你已经使用值&#34; / hello&#34;来控制你的控制器。但在index.jsp里面你有
使用了href =&#34; hello.html&#34;。
所以它不会映射,所有的映射配置都没问题。
将index.jsp中的href值更改为hello。
的index.jsp
<html>
<body>
<h1>Home page</h1>
<p>This is a Home Page.</p>
<p><a href="hello">Hello world link</a></p>
</body>
</html>
还要更改web.xml中的url模式以映射下面的任何请求(/而不是* .htm)
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
如果你想为你的例子使用相同的* .html和/hello.html,你需要在控制器中重定向:url。
还要确保* .htm和* .html不同。
使用如下
@RequestMapping("/hello.html")
public ModelAndView processForm(HttpServlet request, HttpServletResponse response){
//process form data etc
ModelAndView modelAndView = new ModelAndView("redirect:hello");
Map<Object, Object> model = modelAndView.getModel();
modelAndView.addObject("error", "this.is.my.error.code");
return modelAndView;
}