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

溫馨提示×

Spring Boot使用yml格式進行配置的方法

小云
111
2023-08-16 15:15:00
欄目: 編程語言

Spring Boot使用yml格式進行配置的方法分為以下幾個步驟:

  1. 在項目的src/main/resources目錄下創建一個名為application.yml的文件。

  2. application.yml文件中使用yml格式進行配置,例如:

server:
port: 8080
servlet:
context-path: /api
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydb
username: root
password: password
jpa:
hibernate:
ddl-auto: update
show-sql: true
logging:
level:
root: INFO
com.example: DEBUG
  1. 在Spring Boot的啟動類上使用注解@EnableAutoConfiguration@SpringBootApplication
@SpringBootApplication
@EnableAutoConfiguration
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
  1. 在需要讀取配置的地方使用注解@Value@ConfigurationProperties來注入配置屬性。
@RestController
public class ExampleController {
@Value("${server.port}")
private int serverPort;
@Value("${server.servlet.context-path}")
private String contextPath;
@GetMapping("/info")
public String getInfo() {
return "Server Port: " + serverPort + ", Context Path: " + contextPath;
}
}

這樣,就可以使用yml格式進行配置了。在項目啟動時,Spring Boot會自動讀取application.yml文件中的配置并注入到對應的屬性中。

0
双江| 怀远县| 辰溪县| 周口市| 开阳县| 定州市| 泸州市| 福清市| 金昌市| 灌南县| 贵南县| 公安县| 秦安县| 正蓝旗| 潍坊市| 库尔勒市| 永登县| 淅川县| 五峰| 文登市| 峨眉山市| 珠海市| 教育| 柏乡县| 邢台市| 个旧市| 定日县| 化州市| 洪泽县| 准格尔旗| 西乌| 深水埗区| 合江县| 松溪县| 汤原县| 旌德县| 永宁县| 杭锦旗| 丰原市| 呼伦贝尔市| 淮南市|