SpingBoot笔记
程序员文章站
2024-03-14 15:00:04
...
application.properties 配置文件
1.设置Tomcat端口号
server.port=8080
2.设置上下文根
server.servlet.context-path=/springboot
配置文件.yml和yaml
application.yml或者application.yaml
多环境下核心配置文件的使用
application.properties
application-dev.properties
application-test.properties
application-realse.properties
.....
application.properties主核心配置文件
spring.profiles.active=dev;
配置文件自定义参数的使用
//配置文件中
school.name=SuperSchool
//代码中
@Value(${school.name})
private String schoolName;
配置Mybatis