君不见长松卧壑困风霜,时来屹立扶明堂。这篇文章主要讲述application.properties 文件和 application.yml 文件的区别相关的知识,希望能为你提供帮助。
yml文件的好处,天然的树状结构,方便查看,最终会转成application.properties
注意点:
1,原有的key,例如spring.jpa.properties.hibernate.dialect,按“
.”
分割,都变成树状的配置
2,key后面的冒号,后面一定要跟一个空格
3,把原有的application.properties删掉。然后一定要执行一下
maven -X clean instal
#application.yml server: port: 8080spring: datasource: name: test url: jdbc:mysql://127.0.0.1:3306/test username: root password: xxx # 使用druid数据源 type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver filters: stat maxActive: 20 initialSize: 1 maxWait: 60000 minIdle: 1 timeBetweenEvictionRunsMillis: 60000 minEvictableIdleTimeMillis: 300000 validationQuery: select ‘x‘ testWhileIdle: true testOnBorrow: false testOnReturn: false poolPreparedStatements: true maxOpenPreparedStatements: 20
【application.properties 文件和 application.yml 文件的区别】
推荐阅读
- 慎用uniapp开发商业级应用
- Android进阶你必须要了解的知识(ThreadLocal)
- APP耗电量测试
- Xcode - Xcode10上传应用到AppStore
- 关于最新create-react-app使用react-app-rewired2.x添加webpack配置
- call apply bind的区别
- Android四大组件framework层
- 数据科学中的预处理(第3部分)(扩展合成数据)
- Python字典深入学习教程