SpringBoot(???):SpringBoot??????Mybatis
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot(???):SpringBoot??????Mybatis相关的知识,希望对你有一定的参考价值。
?????????1.3 dep oca dao??? drive start nic path str
(1)????????????SpringBoot??????,???pom.xml???????????????jar??????
?????????:
<!--??????mybatis??????springboot--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.1</version> </dependency> <!--mysql???jdbc?????????--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency>
(2)???SpringBoot?????????????????????application.properties??????????????????
??????????????????6.0????????????????????????????????? com.mysql.cj.jdbc.Driver ?????????????????????cj
?????????:
spring.datasource.username=root spring.datasource.password=root #6.0????????????????????????????????? com.mysql.cj.jdbc.Driver ?????????????????????cj spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/student?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT
??????????????????Model Mapper dao??? ?????????????????????????????????????????????????????????????????????
??????GeneratorMapper.xml???????????????????????????????????????????????????(??????)
???pom????????????????????????????????????
????????????
??????Service??? Controller???
??????????????????:
Controller?????????
mapper??????:
?????????????????????????????? @Mapper //??????mapper????????????spring??????????????????bean
????????????:
??????????????????
??????:
?????????????????????StudentMapper??????StudentMapper.xml??????????????????????????????????????????????????????????????????
??????:
????????????????????????application????????????mapper.xml?????????
#??????mapper.xml????????? mybatis.mapper-locations=classpath:mapper/*.xml
以上是关于SpringBoot(???):SpringBoot??????Mybatis的主要内容,如果未能解决你的问题,请参考以下文章
Swagger2 常用使用 及 SpringBoo 整合 Swagger2