spring boot中读取配置文件的两种方式

Posted 记录点滴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot中读取配置文件的两种方式相关的知识,希望对你有一定的参考价值。

application.properties

test.name=测试
test.url=www.test.com

[email protected]注解

在controller里可以这样直接调用

@Value("${test.name}")
private String name;

@Value("${test.url}")
private String url;

[email protected](prefix="test")

新建一个ConfigTest.java

@Component  
@ConfigurationProperties(prefix="test")
public class ConfigTest(){

    private String name;

    private String url;

  //get--set
    
}

 

以上是关于spring boot中读取配置文件的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 读取配置文件的方式

Spring Boot配置过滤器的两种方式

Spring-boot-route读取配置文件的几种方式

spring-boot-route读取配置文件的几种方式

Spring加载properties文件的两种方式

Spring Boot 中使用 @Transactional 注解配置事务管理