91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

springboot怎么加載yml配置文件

小億
146
2023-12-14 17:06:19
欄目: 編程語言

Spring Boot 默認會加載 application.yml 或者 application.properties 配置文件。在 Spring Boot 項目中,我們可以通過在 pom.xml 文件中添加 spring-boot-starter-parent 依賴來使用 Spring Boot,并且在 src/main/resources 目錄下創建 application.yml 文件來存放配置。

以下是一個簡單的 application.yml 配置文件示例:

server: port: 8080 spring: datasource: url: jdbc:mysql://localhost:3306/mydatabase username: root password: password

在上述示例中,我們指定了服務器端口為 8080,并配置了數據庫連接參數。

在 Spring Boot 應用程序中,可以使用 @Value 注解或者 @ConfigurationProperties 注解來加載配置文件中的屬性值。以下是兩種方式的示例:

使用 @Value 注解加載配置文件屬性值:

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class MyComponent {
  
  @Value("${server.port}")
  private int serverPort;
  
  // getter and setter methods
}

使用 @ConfigurationProperties 注解加載配置文件屬性值:

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component
@ConfigurationProperties(prefix = "spring.datasource")
public class DatabaseConfig {
  
  private String url;
  private String username;
  private String password;
  
  // getter and setter methods
}

將上述示例中的代碼添加到 Spring Boot 項目中,就可以加載配置文件中的屬性值了。

0
调兵山市| 德兴市| 巩留县| 曲水县| 封开县| 报价| 曲周县| 冀州市| 平阴县| 安阳市| 安图县| 页游| 修水县| 泾川县| 芜湖市| 中江县| 石柱| 高碑店市| 巨野县| 化州市| 徐闻县| 南川市| 大方县| 城步| 镇沅| 丘北县| 海口市| 柘荣县| 会同县| 玛曲县| 洛川县| 南丹县| 新昌县| 高雄县| 瑞昌市| 军事| 沙坪坝区| 柳河县| 洛隆县| 康保县| 天等县|