我google了很多,得到一個答案:如何在spring mvc項目中使用jstl來獲取requestURI?
<c:out value="${pageContext.request.requestURI}" />
,但我得到/myapp/WEB-INF/views/index.jsp
我想/myapp/index
我怎麼能這樣做?
我的項目是使用spring mvc。 我在春天mvc.xml配置:
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
在我的/ WEB-INF /視圖/,有一個index.jsp的
我的Controler:
@RequestMapping("/index")
public String welcome() {
return "index";
}
當我查看localhost:8088/myapp/index
, 表明。
可能的重複[如何在JSP中獲取正確的當前URL在Web應用程序中](http://stackoverflow.com/questions/9711896/how-to-get-correct-current-url-in-jsp-in- spring-webapp) – acdcjunior