這篇文章主要講解Springboot整合Mybatis實現一個最基本的增刪改查功能,整合的方式有兩種一種是註解形式的,也就是沒有Mapper.xml文件,還有一種是XML形式的,我推薦的是使用註解形式,爲何呢?由於更加的簡潔,減小沒必要要的錯誤。java
1、環境配置
對於環境配置我是用了一張表來展現,版本之間差別不大,你能夠基於其餘版本進行測試。Idea我已經破解了,破解碼是我羣裏的一個朋友提供的,親測可用。並且在2019的版本也能夠永久破解。須要的能夠私聊我。由於我以前寫過破解的文章,由於某些緣由,被平臺刪了。mysql
名稱 | 版本 |
---|---|
Idea | 2018專業版(已破解) |
Maven | 3.6.0 |
SpringBoot | 2.2.2 |
Mybatis | 5.1.44(版本高點比較好) |
Navicat(可視化工具) | 12(已破解) |
jdk | 1.8 |
這就是個人基本的環境。下一步咱們一步一步來整合一波web
2、整合Mybatis
第一步:數據庫新建Person表spring
1SET NAMES utf8mb4;
2SET FOREIGN_KEY_CHECKS = 0;
3-- ----------------------------
4-- Table structure for person
5-- ----------------------------
6DROP TABLE IF EXISTS `person`;
7CREATE TABLE `person` (
8 `id` int(11) NOT NULL AUTO_INCREMENT,
9 `name` varchar(255) CHARACTER SET utf8
10 COLLATE utf8_general_ci NULL DEFAULT NULL,
11 `age` int(11) NULL DEFAULT NULL,
12 PRIMARY KEY (`id`) USING BTREE
13) ENGINE = InnoDB AUTO_INCREMENT = 1
14CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
15SET FOREIGN_KEY_CHECKS = 1;
這個表結構很簡單,也就是三個字段id、name、age。並以id爲主鍵且遞增。sql
第二步:新建Springboot項目數據庫
這個比較簡單,這裏先給出一個最終的目錄結構:瀏覽器
第三步:導入相關依賴springboot
1 <!--================================================-->
2 <!--springboot開發web項目的起步依賴-->
3 <dependency>
4 <groupId>org.springframework.boot</groupId>
5 <artifactId>spring-boot-starter-web</artifactId>
6 </dependency>
7 <!-- 加載mybatis整合springboot -->
8 <dependency>
9 <groupId>org.mybatis.spring.boot</groupId>
10 <artifactId>mybatis-spring-boot-starter</artifactId>
11 <version>1.3.1</version>
12 </dependency>
13 <!-- MySQL的jdbc驅動包 -->
14 <dependency>
15 <groupId>mysql</groupId>
16 <artifactId>mysql-connector-java</artifactId>
17 <version>5.1.44</version>
18 </dependency>
19 <dependency>
20 <groupId>junit</groupId>
21 <artifactId>junit</artifactId>
22 <version>4.12</version>
23 </dependency>
24<!--================================================-->
OK,咱們只須要加上這些依賴便可。在咱們的pom文件。服務器
第四步:更改application.yml配置文件微信
咱們只須要把application.properties文件改成yml格式便可。此時添加相關配置
1#配置服務器信息
2server:
3 port: 8082
4spring:
5 #mysql數據庫相關配置
6 datasource:
7 url: jdbc:mysql://127.0.0.1:3306/uav?characterEncoding=utf8&useSSL=false
8 username: root
9 password: root
10 driver-class-name: com.mysql.jdbc.Driver
11#mybatis依賴
12mybatis:
13 type-aliases-package: com.fdd.mybatis.dao
這裏的配置有點多,不過仍是一個最基本的配置都在這。
第五步:新建dao包,在dao包下新建Person類
1public class Person {
2 private int id ;
3 private String name;
4 private int age;
5 public Person() {
6 }
7 public Person(int id, String name, int age) {
8 this.id = id;
9 this.name = name;
10 this.age = age;
11 }
12 //getter和setter方法
13 //toString方法
14}
這個類是和咱們數據庫中的Person類一一對應的。
第六步:新建mapper包,在mapper新建PersonMapper類
在這個類中,咱們實現基本的增刪改查功能接口:
1@Mapper
2public interface PersonMapper {
3 //增長一個Person
4 @Insert("insert into person(id,name,age)values(#{id},#{name},#{age})")
5 int insert(Person person);
6 //刪除一個Person
7 @Delete("delete from person where id = #{id}")
8 int deleteByPrimaryKey(Integer id);
9 //更改一個Person
10 @Update("update person set name =#{name},age=#{age} where id=#{id}")
11 int updateByPrimaryKey(Integer id);
12 //查詢一個Person
13 @Select("select id,name ,age from person where id = #{id}")
14 Person selectByPrimaryKey(Integer id);
15 //查詢全部的Person
16 @Select("select id,name,age from person")
17 List<Person> selectAllPerson();
18}
這就是最基本的一個增刪改查操做的接口。
第七步:新建service包,在service包建立PersonService接口
1public interface PersonService {
2 //增長一個Person
3 int insertPerson(Person person);
4 //刪除一個Person
5 int deleteByPersonId(Integer id);
6 //更改一個Person
7 int updateByPersonId(Person record);
8 //查詢一個Person
9 Person selectByPersonId(Integer id);
10 //查詢全部的Person
11 List<Person> selectAllPerson();
12}
第八步:在service包下建立PersonServiceImpl接口實現類
1@Service
2public class PersonServiceImpl implements PersonService {
3 @Autowired
4 private PersonMapper personMapper;
5 @Override
6 public int insertPerson(Person person) {
7 return personMapper.insert(person);
8 }
9 @Override
10 public int deleteByPersonId(Integer id) {
11 return personMapper.deleteByPrimaryKey(id);
12 }
13 @Override
14 public int updateByPersonId(Person record) {
15 return personMapper.updateByPrimaryKey(record);
16 }
17 @Override
18 public Person selectByPersonId(Integer id) {
19 return personMapper.selectByPrimaryKey(id);
20 }
21 @Override
22 public List<Person> selectAllPerson() {
23 return personMapper.selectAllPerson();
24 }
25}
第九步:編寫controller層
1@RestController
2public class PersonController {
3 @Autowired
4 private PersonService personService;
5 @RequestMapping(value = "/add")
6 public String students () {
7 Person person = new Person();
8 person.setId(1);
9 person.setName("java的架構師技術棧");
10 person.setAge(18);
11 int result = personService.insertPerson(person);
12 System.out.println("插入的結果是:"+result);
13 return result+"";
14 }
15 @RequestMapping(value = "/findAll")
16 public String findAll () {
17 List<Person> people = personService.selectAllPerson();
18 people.stream().forEach(System.out::println);
19 return people.toString()+"";
20 }
21}
第十步:在啓動主類添加掃描器
1@SpringBootApplication
2@MapperScan("com.fdd.mybatis.mapper")
3public class SpringBootMybatisApplication {
4 public static void main(String[] args) {
5 SpringApplication.run(SpringBootMybatisApplication.class, args);
6 }
7}
第十一步:測試
在瀏覽器輸入相應的路徑便可。OK。大功告成。只要你按照上面的步驟一步一步來,就必定OK。
本文分享自微信公衆號 - 愚公要移山(fdd_sxu_nwpu)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。