0


如何在Spring Boot中使用外部配置文件?

如何在Spring Boot中使用外部配置文件?

在Spring Boot中,可以使用外部配置文件来配置应用程序的行为。外部配置文件通常包含敏感信息,例如数据库凭据或安全令牌,以及一些通用配置,例如端口号、日志级别等。

要在Spring Boot中使用外部配置文件,请按照以下步骤操作:

1、创建配置文件

首先,创建一个名为

application.properties

application.yml

的配置文件。这些文件位于项目的

src/main/resources

目录下。

2、配置文件内容

在配置文件中,您可以设置各种属性,例如数据库连接详细信息、日志级别、服务器端口等。例如,在

application.properties

文件中,您可以设置以下属性:

spring.datasource.url=jdbc:mysql://localhost:3306/mydb  
spring.datasource.username=myuser  
spring.datasource.password=mypassword  
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver  
  
logging.level.root=INFO  
logging.level.org.springframework.web=DEBUG

或者在

application.yml

文件中,您可以设置以下属性:

spring:  
  datasource:  
    url: jdbc:mysql://localhost:3306/mydb  
    username: myuser  
    password: mypassword  
    driver-class-name: com.mysql.cj.jdbc.Driver  
  logging:  
    level:  
      root: INFO  
      org.springframework.web: DEBUG

3、使用配置文件中的属性

在应用程序中,您可以使用

@Value

注解从配置文件中读取属性值。例如,在Java类中,您可以这样做:

import org.springframework.beans.factory.annotation.Value;  
import org.springframework.stereotype.Component;  
  
@Component  
public class MyComponent {  
    @Value("${spring.datasource.url}")  
    private String dataSourceUrl;  
      
    // ...其他代码...  
}

或者在Spring Boot的Thymeleaf模板中,您可以这样做:

<p th:text="${dataSourceUrl}"></p>

4、加载外部配置文件(可选)

默认情况下,Spring Boot会自动加载

application.properties

application.yml

文件。但是,如果您想加载不同的配置文件,可以使用

--spring.config.name

--spring.config.location

参数。例如:

  • --spring.config.name=myapp:加载名为myapp的配置文件。该文件必须位于src/main/resources目录下。如果找不到该文件,则会自动加载默认的application配置文件。
  • --spring.config.location=file:/path/to/config/dir/:加载位于指定目录下的所有配置文件。该目录中的任何.properties.yml文件都将被加载。如果没有找到任何配置文件,则会自动加载默认的application配置文件。
标签: spring boot java spring

本文转载自: https://blog.csdn.net/luoluoal/article/details/131232249
版权归原作者 luoluoal 所有, 如有侵权,请联系我们删除。

“如何在Spring Boot中使用外部配置文件?”的评论:

还没有评论