1.4 配置MyBatis的SqlSessionFactory和MapperScannerConfigurer
BookMApper
package com.yuan.mapper; import com.yuan.model.Book; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BookMapper { int deleteByPrimaryKey(Integer bid); int insert(Book record); int insertSelective(Book record); Book selectByPrimaryKey(Integer bid); int updateByPrimaryKeySelective(Book record); int updateByPrimaryKey(Book record); List<Book> demo(Book book); } • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22
BookBiz
package com.yuan.Biz.Impl; import com.yuan.Biz.BookBiz; import com.yuan.mapper.BookMapper; import com.yuan.model.Book; import com.yuan.utils.PageBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @author 叶秋 * @site * @company 卓京公司 * @create 2023-08-25 16:40 */ @Service public class BookBizImpl implements BookBiz { @Autowired private BookMapper bookMapper; @Override public int deleteByPrimaryKey(Integer bid) { return bookMapper.deleteByPrimaryKey(bid); } @Override public int insert(Book record) { return bookMapper.insert(record); } @Override public int insertSelective(Book record) { return bookMapper.insertSelective(record); } @Override public Book selectByPrimaryKey(Integer bid) { return bookMapper.selectByPrimaryKey(bid); } @Override public int updateByPrimaryKeySelective(Book record) { return bookMapper.updateByPrimaryKeySelective(record); } @Override public int updateByPrimaryKey(Book record) { return bookMapper.updateByPrimaryKey(record); } @Override public List<Book> demo(Book book, PageBean pageBean) { return bookMapper.demo(book); } } • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33 • 34 • 35 • 36 • 37 • 38 • 39 • 40 • 41 • 42 • 43 • 44 • 45 • 46 • 47 • 48 • 49 • 50 • 51 • 52 • 53 • 54 • 55 • 56 • 57 • 58 • 59 • 60 • 61
BookBizImpl
package com.yuan.Biz.Impl; import com.yuan.Biz.BookBiz; import com.yuan.mapper.BookMapper; import com.yuan.model.Book; import com.yuan.utils.PageBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @author 叶秋 * @site * @company 卓京公司 * @create 2023-08-25 16:40 */ @Service public class BookBizImpl implements BookBiz { @Autowired private BookMapper bookMapper; @Override public int deleteByPrimaryKey(Integer bid) { return bookMapper.deleteByPrimaryKey(bid); } @Override public int insert(Book record) { return bookMapper.insert(record); } @Override public int insertSelective(Book record) { return bookMapper.insertSelective(record); } @Override public Book selectByPrimaryKey(Integer bid) { return bookMapper.selectByPrimaryKey(bid); } @Override public int updateByPrimaryKeySelective(Book record) { return bookMapper.updateByPrimaryKeySelective(record); } @Override public int updateByPrimaryKey(Book record) { return bookMapper.updateByPrimaryKey(record); } @Override public List<Book> demo(Book book, PageBean pageBean) { return bookMapper.demo(book); } } • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33 • 34 • 35 • 36 • 37 • 38 • 39 • 40 • 41 • 42 • 43 • 44 • 45 • 46 • 47 • 48 • 49 • 50 • 51 • 52 • 53 • 54 • 55 • 56 • 57 • 58 • 59 • 60 • 61
测试
package com.yuan.Biz.Impl; import com.yuan.Biz.BookBiz; import com.yuan.model.Book; import com.yuan.utils.PageBean; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /** * @author 叶秋 * @site * @company 卓京公司 * @create 2023-08-25 16:43 */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations={"classpath:spring-context.xml"}) public class BookBizImplTest { @Autowired private BookBiz bookBiz; @Test public void selectByPrimaryKey() { System.out.println(this.bookBiz.selectByPrimaryKey(45)); } } • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33
打印结果
2.Spring aop集成pagehelper插件
pageBean
package com.yuan.utils; import javax.servlet.http.HttpServletRequest; import java.io.Serializable; import java.util.Map; public class PageBean implements Serializable { private static final long serialVersionUID = 2422581023658455731L; //页码 private int page=1; //每页显示记录数 private int rows=10; //总记录数 private int total=0; //是否分页 private boolean isPagination=true; //上一次的请求路径 private String url; //获取所有的请求参数 private Map<String,String[]> map; public PageBean() { super(); } //设置请求参数 public void setRequest(HttpServletRequest req) { String page=req.getParameter("page"); String rows=req.getParameter("rows"); String pagination=req.getParameter("pagination"); this.setPage(page); this.setRows(rows); this.setPagination(pagination); this.url=req.getContextPath()+req.getServletPath(); this.map=req.getParameterMap(); } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Map<String, String[]> getMap() { return map; } public void setMap(Map<String, String[]> map) { this.map = map; } public int getPage() { return page; } public void setPage(int page) { this.page = page; } public void setPage(String page) { if(null!=page&&!"".equals(page.trim())) this.page = Integer.parseInt(page); } public int getRows() { return rows; } public void setRows(int rows) { this.rows = rows; } public void setRows(String rows) { if(null!=rows&&!"".equals(rows.trim())) this.rows = Integer.parseInt(rows); } public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public void setTotal(String total) { this.total = Integer.parseInt(total); } public boolean isPagination() { return isPagination; } public void setPagination(boolean isPagination) { this.isPagination = isPagination; } public void setPagination(String isPagination) { if(null!=isPagination&&!"".equals(isPagination.trim())) this.isPagination = Boolean.parseBoolean(isPagination); } /** * 获取分页起始标记位置 * @return */ public int getStartIndex() { //(当前页码-1)*显示记录数 return (this.getPage()-1)*this.rows; } /** * 末页 * @return */ public int getMaxPage() { int totalpage=this.total/this.rows; if(this.total%this.rows!=0) totalpage++; return totalpage; } /** * 下一页 * @return */ public int getNextPage() { int nextPage=this.page+1; if(this.page>=this.getMaxPage()) nextPage=this.getMaxPage(); return nextPage; } /** * 上一页 * @return */ public int getPreivousPage() { int previousPage=this.page-1; if(previousPage<1) previousPage=1; return previousPage; } @Override public String toString() { return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", isPagination=" + isPagination + "]"; } } • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33 • 34 • 35 • 36 • 37 • 38 • 39 • 40 • 41 • 42 • 43 • 44 • 45 • 46 • 47 • 48 • 49 • 50 • 51 • 52 • 53 • 54 • 55 • 56 • 57 • 58 • 59 • 60 • 61 • 62 • 63 • 64 • 65 • 66 • 67 • 68 • 69 • 70 • 71 • 72 • 73 • 74 • 75 • 76 • 77 • 78 • 79 • 80 • 81 • 82 • 83 • 84 • 85 • 86 • 87 • 88 • 89 • 90 • 91 • 92 • 93 • 94 • 95 • 96 • 97 • 98 • 99 • 100 • 101 • 102 • 103 • 104 • 105 • 106 • 107 • 108 • 109 • 110 • 111 • 112 • 113 • 114 • 115 • 116 • 117 • 118 • 119 • 120 • 121 • 122 • 123 • 124 • 125 • 126 • 127 • 128 • 129 • 130 • 131 • 132 • 133 • 134 • 135 • 136 • 137 • 138 • 139 • 140 • 141 • 142 • 143 • 144 • 145 • 146 • 147 • 148 • 149 • 150 • 151 • 152 • 153 • 154
PagerAspect
package com.yuan.aspect; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.yuan.utils.PageBean; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.springframework.stereotype.Component; import java.util.List; /** * @author 叶秋 * @site * @company 卓京公司 * @create 2023-08-25 17:01 */ @Aspect @Component public class PagerAspect { @Around("execution(* *..*Biz.*Pager(..))") public Object invoke(ProceedingJoinPoint args) throws Throwable { PageBean pageBean = null; //获取目标中的所有方法 Object[] args1 = args.getArgs(); for (Object o : args1) { if (o instanceof PageBean) { pageBean = (PageBean) o; break; } } if (pageBean != null && pageBean.isPagination()) { PageHelper.startPage(pageBean.getPage(), pageBean.getRows()); } Object proceed = args.proceed(); if (pageBean != null && pageBean.isPagination()) { PageInfo pageInfo = new PageInfo((List) proceed); pageBean.setTotal((int) pageInfo.getTotal()); } return proceed; } } • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33 • 34 • 35 • 36 • 37 • 38 • 39 • 40 • 41 • 42 • 43 • 44 • 45 • 46
测试方法
@Test public void list() { Book book = new Book(); book.setBname("圣墟"); PageBean pageBean = new PageBean(); pageBean.setPage(2); pageBean.setRows(20); this.bookBiz.demo(book,pageBean).forEach(System.out::println); } • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9
打印结果
总结
本文深入探讨了Spring与MyBatis集成的最佳实践与技巧。我们学习了如何进行基本配置,使用Spring管理MyBatis的Mapper,使用Spring的事务管理器管理MyBatis的事务,以及如何使用Spring的AOP功能增强MyBatis的功能。通过合理地使用这些技术,我们可以提高应用程序的性能和可维护性。
在实际开发中,我们应该根据具体的需求和项目规模来选择合适的集成方式,并结合项目的实际情况进行调优和优化。希望本文对您在Spring与MyBatis集成方面的学习和实践有所帮助。
附带内容:
在实际项目中,Spring与MyBatis的集成是非常常见的。通过将两个框架结合使用,我们可以充分发挥它们各自的优势,提高开发效率和代码质量。
- 在配置Spring与MyBatis集成时,我们需要注意以下几点:
- 确保正确引入Spring和MyBatis的依赖,版本兼容性是非常重要的。
- 配置数据源和事务管理器时,需要根据实际情况选择合适的实现。
- 在使用Spring管理MyBatis的Mapper时,可以选择使用@Mapper注解或
- MapperScannerConfigurer扫描Mapper接口。
- 在使用Spring的事务管理器管理MyBatis的事务时,需要注意事务的传播行为和隔离级别的设置。
- 使用Spring的AOP功能增强MyBatis的功能时,可以定义切面类并配置切点和通知,以实现对Mapper方法的增强。
总之,Spring与MyBatis的集成可以帮助我们更好地组织和管理代码,提高开发效率和代码质量。通过深入学习和实践,我们可以掌握集成的最佳实践与技巧,为项目的成功实施提供有力支持。