在 spring boot
使用 mybatis
一共有两种方式
在使用 mybatis
之前,先安装一个插件,这个插件可以在 xml
和 mapper
之前跳转。
使用 xml
之前,首先我先简单的说一下,大体的流程,当然不涉及内部实现,只是表面走一个流程。
请参考 xml
代理文件的用法。
测试类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| package com.example.blog;
import com.example.blog.dao.mapper.ArticleMapper; import com.example.blog.dao.pojo.Article; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest;
import java.util.List;
@SpringBootTest public class ArticleMapperTest { @Autowired public ArticleMapper articleMapper;
@Test public void testGet() { List<Article> articles = articleMapper.findAllUsers(); System.out.println(articles); } }
|