静态文件默认是放在静态资源文件夹static中的
要想把文件放入templates文件夹,必须在pom.xml中引入templates模板
?? ???? <!-- 整合thymeleaf模板 -->?? ?
?? ??? ?<dependency> ?
?? ??? ???? <groupId>org.springframework.boot</groupId> ?
?? ??? ???? <artifactId>spring-boot-starter-thymeleaf</artifactId> ?
?? ??? ?</dependency> ???
spring boot项目首页跳转:
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
?? ?@Override
?? ?public void addViewControllers(ViewControllerRegistry registry) {?? ?
?? ??? ?//静态跳转页
?? ???? //registry.addViewController("/").setViewName("forward:login.html");
?? ??? ?//动态跳转页
?? ???? registry.addViewController("/").setViewName("login");
?? ?}
?? ?
}
要想实现动态跳转:
方法1. yml中加上如下配置
? mvc:
??? view:
????? prefix: /
????? suffix: .html
方法2:pom.xml中引入templates模板
?? ???? <!-- 整合thymeleaf模板 -->?? ?
?? ??? ?<dependency> ?
?? ??? ???? <groupId>org.springframework.boot</groupId> ?
?? ??? ???? <artifactId>spring-boot-starter-thymeleaf</artifactId> ?
?? ??? ?</dependency>