springboot⽤controller跳转html页⾯
之前SSM框架,⾥⾯有webapps⽂件夹,⽤来存放前端页⾯和各种前端资源,现在SpringBoot中没有webapps⽂件夹,springboot结构如下:
第⼀、resourses下⽂件夹public是我⾃⼰创建的,通过local host:8080/index.html可以直接访问
第⼆、通过controller层访问templates中的⽂件夹:
步骤⼀、application.properties 配置中添加spring.thymeleaf.prefix=classpath:/templates/
步骤⼆、l⽂件中添加依赖
<!-- 访问html⽂件依赖begin -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- 访问html⽂件依赖begin -->
pdf转html
步骤三、controller层访问localhost:8080/test  :
打完收⼯。