Spring Boot 核心配置
Spring Boot 的核心配置是通过 application.properties
或 application.yml
文件进行的。以下是一个简单的例子:
application.properties
# 服务器端口
server.port=8080
# 应用上下文路径
server.servlet.context-path=/myapp
# 数据库连接信息
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
# JPA配置
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
application.yml
server:
port: 8080
servlet:
context-path: /myapp
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydb
username: myuser
password: mypass
driver-class-name: com.mysql.jdbc.Driver
jpa:
hibernate:
ddl-auto: update
show-sql: true
这两种格式的文件可以进行相互转换,通常根据团队的偏好或项目规范选择其中一种。在Spring Boot项目中,这些配置会自动被Spring Boot框架加载,无需在代码中显式引用。
评论已关闭