application.yml配置中的属性都代表那些意思
时间: 2023-12-27 09:04:45 浏览: 58
Spring Boot技术知识点:如何获取application.yml配置文件里的相关属性(方法1)
5星 · 资源好评率100%
在Spring Boot应用程序中,application.yml文件是用于配置应用程序属性的文件。在这个文件中,常见的属性有:
1. server.port: 应用的端口号。
2. spring.datasource.url: 数据库连接的URL。
3. spring.datasource.username: 数据库连接的用户名。
4. spring.datasource.password: 数据库连接的密码。
5. spring.jpa.hibernate.ddl-auto: Hibernate自动处理数据库结构的方式。
6. spring.jpa.hibernate.show-sql: 是否在控制台输出SQL语句。
7. spring.jpa.properties.hibernate.dialect: 数据库方言。
8. spring.jackson.serialization.indent_output: 是否缩进Jackson输出的JSON。
9. spring.security.user.name: 应用程序的默认用户名。
10. spring.security.user.password: 应用程序的默认密码。
阅读全文