Spring Boot使用yml格式進行配置的方法分為以下幾個步驟:
在項目的src/main/resources
目錄下創建一個名為application.yml
的文件。
在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
@EnableAutoConfiguration
和@SpringBootApplication
。@SpringBootApplication
@EnableAutoConfiguration
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
@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
文件中的配置并注入到對應的屬性中。