application.properties注释
时间: 2023-09-26 13:07:09 浏览: 203
在Spring Boot应用程序的application.properties文件中,可以设置各种属性来配置应用程序的行为。以下是一些常见的注释,以帮助理解这些属性的作用。
# 数据源配置
spring.datasource.url= # 数据库连接URL
spring.datasource.username= # 数据库用户名
spring.datasource.password= # 数据库密码
spring.datasource.driver-class-name= # 数据库驱动类名
# JPA配置
spring.jpa.show-sql= # 是否显示SQL语句
spring.jpa.hibernate.ddl-auto= # 是否自动创建表
spring.jpa.hibernate.naming.physical-strategy= # 表名、字段名的命名策略
# 日志配置
logging.level.root= # 根日志级别
logging.level.org.springframework= # Spring框架日志级别
logging.level.com.example= # 应用程序包日志级别
# 端口配置
server.port= # 应用程序监听的端口号
# 静态资源配置
spring.resources.static-locations= # 静态资源文件路径
# 缓存配置
spring.cache.type= # 缓存类型
spring.cache.redis.host= # Redis主机名
spring.cache.redis.port= # Redis端口号
spring.cache.redis.password= # Redis密码
# 安全配置
spring.security.user.name= # 默认用户名
spring.security.user.password= # 默认密码
以上注释是一些常见的属性配置,在实际开发中可能会有更多的配置项。在使用时,可以参考注释来了解属性的作用和取值范围。
阅读全文