SpringBoot
Posted jiaxing-java
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot相关的知识,希望对你有一定的参考价值。
配置文件位置
-
file:./config/
-
file:./
-
classpath:/config/
-
classpath:/(默认配置文件位置)
优先级依次:1 > 2 > 3 > 4
properties格式文件,选择激活配置文件
-
新建配置文件
-
配置application-test.properties
server.port=8081
-
配置application-dev.properties
server.port=8082
-
配置application.properties
# springboot的多环境配置:可以选择激活哪一个配置文件 spring.profiles.active=test
yaml文件格式配置激活:用"---"分割,表示多个文件
server:
port: 8081
spring:
profiles:
active:
---
server:
port: 8082
---
server:
port: 8083
以上是关于SpringBoot的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot入门到精通-SpringBoot自定义starter
最全面的SpringBoot教程——SpringBoot概述