Spring MVC 下index.jsp访问
Posted 山高我为峰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring MVC 下index.jsp访问相关的知识,希望对你有一定的参考价值。
spring-mvc.xml配置
<!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/pages/" p:suffix=".jsp" />
所以jsp页面是放置在/WEB-INF/pages下面的,那么要访问/index.jsp怎么访问?
1.没有定义index Controller;当在浏览器中输入http://localhost:8080/springDemo/ 时,它会默认的去找项目的根目录/index.jsp 或/index.html
2.直接输入http://localhost:8080/springDemo/index.jsp也可直接访问到
以上是关于Spring MVC 下index.jsp访问的主要内容,如果未能解决你的问题,请参考以下文章
spring mvc默认index.jsp页面绑定请求出现的jsessionid=xxx路径的问题
spring mvc默认index.jsp页面绑定请求出现的jsessionid=xxx路径的问题
gradle + spring MVC + spring boot + jsp = 404错误?