【Spring】SpringBoot 配置文件
在Spring Boot中,配置文件通常是application.properties
或application.yml
。
1. application.properties 示例
# 服务器端口
server.port=8080
# 数据库配置
spring.datasource.url=jdbc:mysql://localhost:3306/mydb
spring.datasource.username=myuser
spring.datasource.password=mypass
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
2. application.yml 示例
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydb
username: myuser
password: mypass
driver-class-name: com.mysql.jdbc.Driver
这两种格式文件可以根据个人喜好选择使用。在Spring Boot应用中,这些配置会自动被Spring Boot加载,并可以通过@Value
注解或环境抽象Environment
进行访问。
评论已关闭