Spring boot的新手,在Controller中写了一个home方法,返回一个homePage的view。
想到以前在spring-mvc中的时候,可以配置suffix来规定访问的路径的后缀。
搜了下,官网中介绍了这么一个配置,spring.mvc.view.suffix。然后我在application.properties中加上了spring.mvc.view.suffix=.html,发现无论是访问localhost:8080/home还是访问localhost:8080/home.html,都可以得到正确的视图。
如何只让以.html结尾的访问路径才为有效,为什么这里的这个配置没有起作用呢?
大家讲道理2017-06-28 09:24:49
这里配置的spring.mvc.view.suffix=.html和sping mvc中的
<bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
这个的作用是一样的,并不是请求的后缀名,请求的后缀名的话是在你的配置类中进行过滤配置的