自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 Spring是如何得到Mybatis中Mapper对象的?

spring要想得到Mybatis中Mapper对象,需要借助Mybatis-Spring中间件的帮助。 使用Mybatis-Spring中的MapperScannerConfigurer的对象将所有的Mapper注册为MapperFactoryBean对象。 [原作者]https://blog.csdn.net/u012060033/article/details/108453298 ...

2020-10-11 09:48:29 879

原创 迷宫问题

迷宫问题java实现 public class Test { public static void main(String[] args) { // 先创建一个二维数组,模拟迷宫 // map int[][] map = new int[8][7]; // 使用1表示墙,上下左右全部设为1 // 先将上下设为1 for (int i = 0; i < 7; i+...

2020-03-22 14:46:39 79

原创 使用数组实现环形队列

使用数组实现环形队列 class CircleQueue{ private int maxSize; private int front;//0 private int rear;//0 private int arr[]; public CircleQueue(int maxSize) { this.maxSize = maxSize+1;//因为空出来一个,所以环形队列容量比...

2020-03-22 12:02:11 134

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除