springboot

springboot怎么读取自定义properties

小亿
85
2024-08-23 02:06:32
栏目: 深度学习

Spring Boot可以通过以下方式读取自定义的properties文件:

  1. application.propertiesapplication.yml文件中添加自定义属性,例如:
custom.setting=value
  1. application.propertiesapplication.yml中指定自定义properties文件的路径,例如:
spring.config.location=classpath:/custom.properties
  1. 使用@Value注解或Environment对象来读取自定义属性,例如:
@Value("${custom.setting}")
private String customSetting;

@Autowired
private Environment env;

String customSetting = env.getProperty("custom.setting");
  1. 创建一个@Configuration类,使用@PropertySource注解指定自定义properties文件的路径,并使用@Value注解注入属性,例如:
@Configuration
@PropertySource("classpath:custom.properties")
public class CustomConfig {

    @Value("${custom.setting}")
    private String customSetting;

    // getters and setters
}

使用以上方法,Spring Boot可以读取自定义的properties文件并注入到应用程序中。

0
看了该问题的人还看了