spring boot 项目中application.properties如何配置

时间:2021-06-30 18:26:12   收藏:0   阅读:0

一般在application.properties中配置服务器端口以及连接数据库配置,还可配置对应mapper.xml的位置供容器扫描,也可配置驼峰以及包实体类包别名等

server.port=8080
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/online_xdclass
spring.datasource.username=root
spring.datasource.password=XL00754123
mybatis.configuration.map-underscore-to-camel-case=true
mybatis.mapper-locations=classpath:mapper/*.xml
mybatis.type-aliases-package=com.example.online_xdclass.model.entity
server.port=8080 端口号设置为8080

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver 驱动器名称
spring.datasource.url 设置数据库url,可设置本地数据库也可设置远程数据库
spring.datasource.username 数据库登录名
spring.datasource.password 数据库登录密码
mybatis.configuration.map-underscore-to-camel-case 设置驼峰
mybatis.mapper-locations mapper.xml 扫描路径
mybatis.type-aliases-package 为包建立别名


 


 
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!