springboot配置文件
时间: 2023-06-29 22:18:26 浏览: 81
Spring Boot 的配置文件可以使用 YAML,Properties,XML 等多种格式,其中 YAML 是最为常用的。下面是一个基本的 Spring Boot 配置文件示例:
```yaml
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://localhost:3306/test
username: root
password: 123456
jpa:
show-sql: true
hibernate:
ddl-auto: create
security:
user:
name: user
password: password
```
上面的配置文件中,定义了端口号为 8080,数据库连接信息以及 Spring Security 的用户名和密码等。这些配置可以在应用程序中通过 @Value 注解或者 @ConfigurationProperties 注解来获取和使用。
阅读全文