试图掌握Spring MVC控制器。但是遇到相对路径问题
我有一个页面:
http://localhost:8080/jeeniweb/articles
在该页面上有一个菜单选项:
<li><a href="articles/writing_great_code/structure_and_dependencies/">Structure and Dependencies</a></li>`
这在浏览器中解析为:
http://localhost:8080/jeeniweb/articles/writing_great_code/structure_and_dependencies/
当用户点击此链接时,我会使用控制器截取此请求:
@RequestMapping(value = "/articles/{article}/{chapter}")
public String articles(@PathVariable String article, @PathVariable String chapter)
{
System.out.println("Articles Page Request");
System.out.println("article: " + article);
System.out.println("chapter: " + chapter);
return "articles/index";
}
此方法捕获请求,println
方法打印出正确的内容。
但是在通话结束后我想:
http://localhost:8080/jeeniweb/articles
但实际上浏览器会:
http://localhost:8080/mysite/articles/writing_great_code/structure_and_dependencies/
当我从方法返回articles/index
时,这怎么可能?
我的Servlet配置是:
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
据我了解Spring,这意味着在上面代码处理后的结果返回应该是/WEB-INF/views/articles/index.jsp
这就是我想要的。这就是index.jsp页面的位置。
非常感谢任何帮助。
由于 亚当
答案 0 :(得分:0)
控制器只知道它拦截了正确的url,为了解析文章/索引网址,你需要让它返回到该网址的重定向,例如:
return "redirect:articles/index"