码迷,mamicode.com
首页 > 编程语言 > 详细

springboot-mybatis配置(xml)/springboot-jpa配置

时间:2018-08-12 22:51:27      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:nat   nbsp   hbm   文件   serve   time   path   har   upd   

#springboot-mybatis配置(xml)
spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
mybatis.mapper-locations=classpath*:mybatis/*Mapper.xml
mybatis.type-aliases-package=com.forezp.entity

  通过配置mybatis.mapper-locations来指明mapper的xml文件存放位置,我是放在resources/mybatis文件下的。mybatis.type-aliases-package来指明和数据库映射的实体的所在包。

 

springboot-jpa配置

spring.datasource.url=jdbc:mysql://127.0.0.1/test?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&useSSL=true
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

spring.jpa.properties.hibernate.hbm2ddl.auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.show-sql= true

  

springboot-mybatis配置(xml)/springboot-jpa配置

标签:nat   nbsp   hbm   文件   serve   time   path   har   upd   

原文地址:https://www.cnblogs.com/Andrew520/p/9465295.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!