Springboot访问templateshtml页⾯过程详解springboot项⽬默认是不允许直接访问templates下的⽂件的,是受保护的。
如果要访问templates下的⽂件,推荐使⽤thymeleaf。
注:使⽤thymeleaf这⼀点要牢牢记住!
如何使⽤:
1、pom依赖
<!--thymeleaf 模板依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2、配置⽂件
#模板热部署、禁⽤ thymeleaf 缓存
spring.thymeleaf.cache=false
3、html⽂件位于resources的templates/⽬录下,例如
注意html⽂件名,这⾥使⽤goodsShow,在不区分⼤⼩写的情况下与后台返回字符串匹配
4、后台返回字符串形式访问html(也可以使⽤ModelAndView,这⾥不做展⽰)
@Controller
@RequestMapping("/goods")
public class GoodsController {
private static final Logger log = Logger(GoodsController.class);
@GetMapping
public String goodsShow() {
thymereturn "goodsShow";
}
}
5、浏览器访问输⼊:ip:端⼝号/上下⽂根/goods
本地访问:localhost:端⼝号/上下⽂根/goods
例如:localhost:8080/goods
⾥⾯还附有jQuery AJAX在springboot中的应⽤。
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论