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

一般在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 为包建立别名


 


 
上一篇:springboot(七):springboot+mybatis多数据源最简解决方案


下一篇:尚医通项目1.0