yml配置文件引用pom.xml中的变量

常用的profile中的properties子标签动态环境引用,项目组件artifactId引用

pom.xml

<profiles>
    <profile>
        <id>local</id>
        <properties>
            <environment>local</environment>
        </properties>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
    </profile>
    <profile>
        <id>dev</id>
        <properties>
            <environment>dev</environment>
        </properties>
    </profile>
    <profile>
        <id>test</id>
        <properties>
            <environment>test</environment>
        </properties>
    </profile>
    <profile>
        <id>uat</id>
        <properties>
            <environment>uat</environment>
        </properties>
    </profile>
    <profile>
        <id>prod</id>
        <properties>
            <environment>prod</environment>
        </properties>
    </profile>
</profiles>

bootstrap.yml

spring:
  profiles:
    active: @environment@

如遇到ScannerException异常

Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token found character ‘@’ that cannot start any token. (Do not use @ for indentation) in ‘reader’, line 26, column 13: active: @environment@

错误原因:

报了ScannerException异常,yml格式错误的时候抛出的异常,格式哪里有问题呢?active: @environment@解析错误,environment变量在pom中,说明没有加载到pom配置

解决方法:

在右侧的maven栏中重新reload的一下就行了

如果还是不行
添加resource到classpath
spring-boot:run可以将src/main/resources直接添加到classpath

<build>
  <resources>
      <resource>
          <filtering>true</filtering>
          <directory>src/main/resources</directory>
          <includes>
              <include>bootstrap-${environment}.yml</include>
              <include>bootstrap.yml</include>
              <include>**/*</include>
          </includes>
      </resource>
  </resources>
</build>

或者自定义该插件的配置

<plugins>
  <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-resources-plugin</artifactId>
      <version>2.7</version>
      <configuration>
          <delimiters>
              <delimiter>@</delimiter>
          </delimiters>
          <useDefaultDelimiters>false</useDefaultDelimiters>
      </configuration>
  </plugin>
<plugins/>
在Spring Boot应用,读取`application.yml`配置文件是非常常见的操作,它允许开发者将环境变量和系统属性存储在独立的配置文件,而不是硬编码到代码里。`application.yml`通常包含了应用程序的一些基本配置,如数据库连接信息、邮件服务器配置等。 为了读取`application.yml`,首先需要在Spring Boot项目的pom.xml或build.gradle文件添加对Spring Boot Actuator或Spring Cloud Config的支持,以便支持配置文件的动态加载。 对于Java配置(使用@ConfigurationProperties注解): 1. 首先在你的配置类上添加`@ConfigurationProperties(prefix="app")`,其"app"是你在YAML文件定义配置项前缀的别名: ```java @ConfigurationProperties(prefix = "app") public class AppConfig { private String databaseUrl; private int port; // getters and setters... } ``` 2. 在`application.yml`编写配置: ```yaml app: databaseUrl: jdbc:mysql://localhost/mydb port: 8080 ``` 然后通过@Autowired注入AppConfig实例即可访问配置值: ```java @Autowired private AppConfig appConfig; ``` 对于YAML配置(使用`@Profile`和`@ConditionalOnProperty`): 如果你想要基于特定环境(如dev、prod)加载不同的配置,可以使用`@Profile`。例如: ```java @Configuration @Profile("dev") @ConfigurationProperties(prefix = "app.dev") public class DevAppConfig { // ... } @Configuration @Profile("prod") @ConfigurationProperties(prefix = "app.prod") public class ProdAppConfig { // ... } ``` 在启动应用时,Spring会自动选择相应的配置。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

大佬腿好粗

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

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

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

打赏作者

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

抵扣说明:

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

余额充值