springboot学习笔记

yaml文件优先级:

config文件夹下的yaml优先级高于同级目录下的yaml文件。

#springboot的多环境配置,可以通过选择激活哪一个配置文件
spring.profiles.active=test

yaml的端口选择

server:
  port: 8081
spring:
  profiles:
    active: dev
---
server:
  port: 8082
spring:
  profiles: dev

总结:

1.在springboot,我们可以使用以下方式处理静态资源

webjars:localhost:8080/webjars/

public,static,/**,resources localhost:8080/

2.优先级:resources>static>public

//在templates目录下的所有页面,只有通过controller来跳转

ctrl+f调出搜索框

使用Thymeleaf需要把版本调到2.0.1release同时引入thymeleaf的pom文件

        
            org.thymeleaf
            thymeleaf-spring5
        
        
            org.thymeleaf.extras
            thymeleaf-extras-java8time
        

你可能感兴趣的:(学习)