117.info
人生若只如初见

springboot如何读取自定义yml配置文件

在Spring Boot中,可以通过@ConfigurationProperties注解来读取自定义的YAML配置文件。首先在application.propertiesapplication.yml文件中配置自定义的YAML文件的路径,例如:

custom:
  property1: value1
  property2: value2

然后创建一个Java类来映射这些配置,例如:

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

@Configuration
@ConfigurationProperties(prefix = "custom")
public class CustomProperties {
    private String property1;
    private String property2;

    // getters and setters
}

在Spring Boot的启动类中引入@EnableConfigurationProperties注解并将 CustomProperties类作为参数传入,例如:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;

@SpringBootApplication
@EnableConfigurationProperties(CustomProperties.class)
public class MyApp {

    public static void main(String[] args) {
        SpringApplication.run(MyApp.class, args);
    }

}

这样就可以在其他组件中注入CustomProperties类,并访问其中的配置属性,例如:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MyController {

    @Autowired
    private CustomProperties customProperties;

    @GetMapping("/custom")
    public String getCustomProperties() {
        return customProperties.getProperty1() + ", " + customProperties.getProperty2();
    }

}

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe9fcAzsIAQVfB1c.html

推荐文章

  • SpringBoot main方法有哪些要点

    在SpringBoot应用程序中,主要的入口点是一个包含main方法的类。
    在main方法中,通常会使用SpringApplication类来启动SpringBoot应用程序。
    在SpringA...

  • SpringBoot main方法怎么理解

    Spring Boot 的 main 方法是 Spring Boot 应用程序的入口点。在 main 方法中,我们实例化一个 SpringApplication 对象,并将应用程序的主要配置类作为参数传递给...

  • SpringBoot main方法的正确配置是什么

    在SpringBoot应用程序的主类中,需要确保main方法正确配置,通常应该包含@SpringBootApplication注解,如下所示:
    import org.springframework.boot.Spring...

  • SpringBoot main方法能改变启动行为吗

    SpringBoot 的 main 方法本身是不能直接改变启动行为的,它主要用于启动应用程序并加载 Spring 容器。但是,你可以通过自定义配置和注解来改变 SpringBoot 的启动...

  • java set转换为list怎么实现

    可以通过创建一个新的ArrayList对象,并将Set中的元素逐个添加到ArrayList中来实现Set转换为List。可以使用addAll()方法或者循环遍历Set中的元素逐个添加到List中...

  • java集合的概念是什么

    Java集合是一个用于存储和操作对象的容器,它提供了一组接口和类来处理不同类型的集合对象。集合框架提供了多种数据结构,如列表、集合、队列和映射等,使开发人...

  • java的类名定义规则是什么

    Java的类名定义规则如下: 类名必须以字母、下划线或者美元符号$开头,后面可以跟着字母、数字、下划线或者美元符号$。
    类名不能使用Java中的关键字作为类名...

  • java中string什么意思

    在Java中,String是一个类,用来表示字符串。在Java中,字符串是一组字符的序列,可以包含字母、数字、符号等。String类提供了很多方法来操作字符串,比如连接字...