1

试图掌握 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 页面所在的位置。

任何帮助深表感谢。

谢谢亚当

4

1 回答 1

0

控制器只知道它拦截了正确的 url,为了解析文章/索引 url,您需要让它返回到该 url 的重定向,例如:

return "redirect:articles/index"
于 2012-06-12T20:31:14.487 回答