<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.4</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.22</version> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> </dependency> <!-- spring連線驅動時,如com.mysql.cj.jdbc.Driver使用 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> </dependencies>
找到mybatis-spring-boot-starter
設定的依賴,即autotoconfigure
包,SpringBoot
的自動設定,會找到META-INF下的spring.factories
,找到EnableAutoConfiguration
對應的類:
可知自動設定類為MybatisAutoConfiguration:
檢視設定繫結類MybatisProperties,可知yml中字首設定為mybatis:
可知,mybatis字首的yml設定,可以設定屬性,比如:configLocation
、mapperLocations
、typeAliasesPackage
等等。
mybatis下,又具有@NestedConfigurationProperty
成員變數,故而字首是mybatis.configuration
,其中具有如下屬性:
其中有非常熟悉的屬性:mapUnderscoreToCamelCase
,也就是資料庫欄位下劃線轉駝峰的設定。
然後,資料來源有如下設定:
資料來源的設定繫結是DataSourceProperties
:
可知,資料來源在yml中以spring.datasource
為字首,可設定連線資料來源的driverClassName
、url
、username
、password
等引數。
建表:
實體類(mybatis本質上將資料庫表的資料和實體類對應,就是依靠的getter和setter,所以@Data是必須有的):
package com.xiaoxu.boot.dto; import lombok.Data; import java.util.Date; /** * @author xiaoxu * @date 2022-03-08 * spring_boot:com.xiaoxu.boot.dto.PeopleDTO */ @Data public class PeopleDTO { // 人的id編號 long id; // 人的名字 String myName; // 年齡 int myAge; // 出生日期 Date birthday; }
新建Mapper介面:
注意mapper介面必須要有@Mapper註解:
package com.xiaoxu.boot.mapper; import com.xiaoxu.boot.dto.PeopleDTO; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface PeopleMapper { List<PeopleDTO> queryPeopleByAge(int age); }
在resources目錄下準備mybatis的組態檔,以及Mapper檔案:
mybatis-confi.xml:
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> </configuration>
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.xiaoxu.boot.mapper.PeopleMapper"> <select id="queryPeopleByAge" resultType="com.xiaoxu.boot.dto.PeopleDTO"> select * from my_people where my_age = #{age} </select> </mapper>
在application.yml中設定如下:
spring: datasource: username: root password: ****** url: jdbc:mysql://localhost:3306/xiaoxu?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC driver-class-name: com.mysql.cj.jdbc.Driver #mybatis的相關設定 mybatis: #mapper組態檔 mapper-locations: classpath:mapper/*.xml # #mybatis組態檔 # config-location: classpath:mybatis-config.xml # config-location和configuration不能同時存在 #開啟駝峰命名 configuration: map-underscore-to-camel-case: true
插入測試資料:
service層實現:
package com.xiaoxu.service; import com.xiaoxu.boot.dto.PeopleDTO; import com.xiaoxu.boot.mapper.PeopleMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @author xiaoxu * @date 2022-03-08 * spring_boot:com.xiaoxu.service.PeopleService */ @Service public class PeopleService { @Autowired PeopleMapper peopleMapper; public List<PeopleDTO> getPeoples(int Age){ return peopleMapper.queryPeopleByAge(Age); } }
controller層實現:
package com.xiaoxu.boot.controller; import com.xiaoxu.boot.dto.PeopleDTO; import com.xiaoxu.service.PeopleService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** * @author xiaoxu * @date 2022-03-08 * spring_boot:com.xiaoxu.boot.controller.PeopleController */ @RestController public class PeopleController { @Autowired PeopleService peopleService; @GetMapping("/people") public List<PeopleDTO> queryPeople(@RequestParam(value = "ag") int age){ return peopleService.getPeoples(age); } }
執行結果無誤:
修改Mapper介面檔案:
package com.xiaoxu.boot.mapper; import com.xiaoxu.boot.dto.PeopleDTO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface PeopleMapper { List<PeopleDTO> queryPeopleByAge(int age); @Select("select * from my_people") List<PeopleDTO> queryAllPeople(); }
修改服務層:
package com.xiaoxu.service; import com.xiaoxu.boot.dto.PeopleDTO; import com.xiaoxu.boot.mapper.PeopleMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @author xiaoxu * @date 2022-03-08 * spring_boot:com.xiaoxu.service.PeopleService */ @Service public class PeopleService { @Autowired PeopleMapper peopleMapper; public List<PeopleDTO> getPeoples(int Age){ return peopleMapper.queryPeopleByAge(Age); } public List<PeopleDTO> getAllPeople(){ return peopleMapper.queryAllPeople(); } }
增加controller:
package com.xiaoxu.boot.controller; import com.xiaoxu.boot.dto.PeopleDTO; import com.xiaoxu.service.PeopleService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** * @author xiaoxu * @date 2022-03-08 * spring_boot:com.xiaoxu.boot.controller.PeopleController */ @RestController public class PeopleController { @Autowired PeopleService peopleService; @GetMapping("/people") public List<PeopleDTO> queryPeople(@RequestParam(value = "ag") int age){ return peopleService.getPeoples(age); } @GetMapping("/allPeople") public List<PeopleDTO> queryAllPeople(){ return peopleService.getAllPeople(); } }
結果返回無誤:
如果每個Mapper介面檔案上增加@Mapper比較麻煩,那麼可以在設定類,如主程式類上,增加@MapperScan註解,以及掃描路徑,效果和@Mapper一致:
主程式類增加@MapperScan註解:
重新執行效果一致:
本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45