欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

 

相关标签: 个人心得