SpringCloud 加入 thymleaf前端页面的方法

时间:2022-6-11    作者:老大夫    分类: JAVA


说是 SpringCloud 加入 thymleaf前端页面
不如说是 SpringBoot 加入 thymleaf前端页面,因为都在SpringBoot框架之中

加入的方法:

  1. 在父级POM文件中加入thymleaf依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  1. 在子类服务的resource文件夹下创建static文件夹,前端页面就放在这里

  2. 在子类服务中使用跳转配置,thymleaf的页面是不能直接访问的,所以要设置跳转后才能看到.

  3. 可以通过 地址:端口/页面名字 访问了

标签: springboot springcloud


扫描二维码,在手机上阅读

推荐阅读: