springboot+mybatis+mysql整合通俗易懂,微服务开发。

上篇写了怎么搭建一个最基础的微服务项目。今天,主要通过实践,总结下springboot整合mybatis,快速入门。好了,下面直接开始正题吧。

首先:创建一张基础表,添加测试数据如下:

springboot+mybatis+mysql整合通俗易懂,微服务开发。_第1张图片

1:pom.xml添加mysql、jdbc、mybatis依赖:


	org.springframework.boot
	spring-boot-starter-jdbc


	org.mybatis.spring.boot
	mybatis-spring-boot-starter
	2.1.3


	mysql
	mysql-connector-java
	runtime

2:修改application.properties文件:

#配置数据库信息
jdbc.type=mysql
spring.datasource.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

#mybatis.mapper文件的位置
mybatis.mapper-locations=classpath*:mapper/*Mapper.xml
mybatis.type-aliases-package=com.example.demo.entity

3:Controller中新建HelloWorldTest类:

package com.example.demo.controller;

import com.example.demo.entity.student;
import com.example.demo.service.HelloWorldService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
@RequestMapping("/Demo")
public class HelloWorldTest{
    @Autowired
    HelloWorldService helloWorldService;
    @RequestMapping(value = "/helloWorld",method = RequestMethod.GET)
    public List Test() throws Exception{
        return helloWorldService.query();
    }
}

4:建Service接口类及实现类:

  HelloWorldService接口类:

package com.example.demo.service;

import com.example.demo.entity.student;
import java.util.List;

public interface HelloWorldService {
     List query() throws Exception;
}

HelloWorldServiceImpl实现类:

package com.example.demo.service.ServiceImpl;

import com.example.demo.DAO.HelloWorldDAO;
import com.example.demo.entity.student;
import com.example.demo.service.HelloWorldService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class HelloWorldServiceImpl implements HelloWorldService {
    @Autowired HelloWorldDAO helloWorldDAO;
    @Override
    public List query() throws Exception{
            return helloWorldDAO.query();
    }
}

5:dao接口:

package com.example.demo.DAO;

import com.example.demo.entity.student;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;

@Repository
@Mapper
public interface HelloWorldDAO {

     List query() throws Exception;

}

6:编写mapper.xml文件:




    

    
        
        
    

7:在启动类上添加扫描注解:

@SpringBootApplication(scanBasePackages={"com.example.*"})
@MapperScan("com.example.demo.DAO")

8:以上模块整合完成后,项目结构如图所示:

springboot+mybatis+mysql整合通俗易懂,微服务开发。_第2张图片

9:启动项目,访问地址,返回结果如图所示:

springboot+mybatis+mysql整合通俗易懂,微服务开发。_第3张图片
总结:springboot整合mybatis完成了,实现了一个基本请求访问数据库并返回结果。如有问题,欢迎大佬留言讨论!

知识就是要不断的学习,不断的复习,才会记忆的更加的深刻。加油,美好的风景一直在路上!

 

你可能感兴趣的:(微服务,Springboot,spring,boot,mybatis,java)