Spring Boot的核心配置文件是什么?有哪些常用配置?
时间: 2023-05-29 14:05:37 浏览: 203
Spring Boot常用配置
Spring Boot的核心配置文件是application.properties或application.yml。
常用配置包括:
1. 服务器端口号:server.port=8080
2. 数据库连接信息:spring.datasource.url=jdbc:mysql://localhost:3306/test
3. 数据库用户名和密码:spring.datasource.username=root spring.datasource.password=123456
4. 日志级别:logging.level.root=INFO
5. 静态资源路径:spring.resources.static-locations=classpath:/static/
6. 缓存设置:spring.cache.type=redis
7. 模板引擎设置:spring.thymeleaf.cache=false
8. 拦截器配置:spring.mvc.interceptor.include=/** spring.mvc.interceptor.exclude=/login
此外,Spring Boot还支持很多其他的配置,可以根据具体的需求进行配置。
阅读全文