springboot配置 spring.profiles.active spring.profiles.include @profile

springboot配置 spring.profiles.active spring.profiles.include @profile

spring.profiles.active spring.profiles.include
profile的命名方式

application-开头, --横杠(减号)不能少

  • application-{这部分自定义}.properties
  • application-{这部分自定义}.yml
  • application-{这部分自定义}.yaml

在这里插入图片描述

实例:
比如有个两个配置文件为:

  1. application-freemarker.yml
  2. application-hikari-sqlserver.yml
    可以在 application.properties 或 application.yml 或 application.yaml中引入
    在application.properties中引入的写法
  • spring.profiles.active=hikari-sqlserver, freemarker
  • spring.profiles.include=hikari-sqlserver, freemarker
  • spring.profiles.active: hikari-sqlserver, freemarker
  • spring.profiles.include: hikari-sqlserver, freemarker

application.properties 等号可以换成冒号空格, 冒号左边不能有空格

在application.yml中引入

spring:
  profiles:
    active: hikari-sqlserver,  freemarker

spring:
  profiles:
    include: hikari-sqlserver,  freemarker

也可写成

spring.profiles.active: hikari-sqlserver, freemarker

spring.profiles.include: hikari-sqlserver,  freemarker

👆上面这种<<冒号空格写法>>既能用于.properties 也能用于.yml .




SpringBoot @Profile
@Profile 可以和 @Bean 一起使用,

@Profile 可以和 @Bean 一起使用, 当配置文件, 例如application.properties等, 添加了下列条目👇

spring.profiles.active: profileName

或着

spring.profiles.include: profileName

加注了@Profile("profileName")@Bean的方法就会在启动时被执行, 当然,类要加@Configuration,甚至@Component就行,
当然,@Bean应该配@Configuration

例如

import org.springframework.context.annotation.*;
import org.springframework.stereotype.Component;


@Component

public class ImportProfile {
	
	@Profile("ProfileName")
	@Bean
	public Object beanMethod666() {
		System.out.println("\n\n\n👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇"+
				"""
				\n
				当 active 或 include 了 这个方法上面的 @Profile("ProfileName") 中的 ProfileName (区分大小写)
				这个方法就会被执行
				例如:
				spring.profiles.active= ProfileName
				或
				spring.profiles.include= ProfileName
				控制台就会输出这条信息\n
				"""
				+ "👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆\n\n\n ");
		return "hello";
	}
	
}

在这里插入图片描述

也可以同时匹配多个名称
@Profile({"name1","name2","name3"})

import org.springframework.context.annotation.*;
import org.springframework.stereotype.Component;


@Component
@Profile({"是否支持@符号","启用ImportProfile类","可以使用多个名称", "可以使用@@@@@@符号", "可以支持中文"
	, "类上的@Profile相当于总开关" , "类上的@Profile可以没有"})
public class ImportProfile {
	
	@Profile({"ProfileName", "可以用字符串数组匹配多个", "名称2", "名称3" })
	@Bean
	public Object beanMethod666() {
		System.out.println(
				"""
				\n\n\n👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇
				
				当 active 或 include 了 这个方法上面的  ProfileName (区分大小写)
				@Profile({"ProfileName", "可以用字符串数组匹配多个", "名称2", "名称3" })
				中的其中一个名称,	这个方法就会被执行
				例如:
				spring.profiles.active: 启用ImportProfile类
				或
				spring.profiles.include: 可以用字符串数组匹配多个
				控制台就会输出这条信息
				
				👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆\n\n\n 
				""");

		return new ImportProfile(){}; //返回一个匿名内部类意思意思
	}
	
}

中文.properties中会转义显示
在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

kfepiza

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值