2020
09-23
09-23
深入浅析springboot中static和templates区别
静态页面的return默认是跳转到/static/目录下,当在pom.xml中引入了thymeleaf组件,动态跳转会覆盖默认的静态跳转,默认就会跳转到/templates/下,注意看两者return代码也有区别,动态没有html后缀。1.1在static下新建hello1.html运行程序,浏览器输入http://localhost:8080/hello1.htmlso,可以在根目录下访问hello1.html,static目录类似于传统Javaweb中的webroot或webcontent1.2也可以通过接口跳转1.2.1添加接口@RequestMapp...
继续阅读 >