1 Star 0 Fork 0

咒怨重生/spring-boot-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

spring-boot-demo

介绍日志配置文件的使用

1、logback-spring.xml配置

2、启动参数

  • -Dspring.profiles.active=dev -Dspring.config.location=classpath:/env/dev/
  • -Dspring.profiles.active=test -Dspring.config.location=classpath:/env/test/
  • -Dspring.profiles.active=prod -Dspring.config.location=classpath:/env/prod/

主要是使不同环境的配置放在不同的目录

property文件加载

@Component
@ConfigurationProperties(prefix = "person")
@PropertySource(value = {"${spring.config.location}person.properties"}, encoding = "UTF-8")
public class PersonProperties implements Serializable {
    //
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ceclar123/spring-boot-demo.git
git@gitee.com:ceclar123/spring-boot-demo.git
ceclar123
spring-boot-demo
spring-boot-demo
master

搜索帮助