在Spring Boot中,基础配置通常在application.properties
或application.yml
文件中设置。以下是一些常见的配置示例:
application.properties
# 服务器端口
server.port=8080
# 应用上下文路径
server.servlet.context-path=/myapp
# 日志级别设置
logging.level.root=WARN
logging.level.org.springframework.web=DEBUG
# 数据库连接信息
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
logging:
level:
root: WARN
org.springframework.web: DEBUG
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
这些配置设置了应用的端口、上下文路径、日志级别、数据库连接信息和JPA配置。在实际项目中,根据项目需求,可能还需要配置更多的属性。