自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 idea创建spring.xml文件,没有spring config选项

idea创建spring.xml文件,没有spring config选项解决方法:1.在pom.xml中添加spring-context依赖<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.2.2.REL

2021-12-09 11:09:32 570

原创 整合mybatis-plus报错java.lang.NoSuchMethodError: org.apache.ibatis.session.Configuration

使用mybatis+mp插件整合时,使用了方法MybatisSqlSessionFactoryBuilder,但是一直报错改正方法:将pom.xml文件中的mybatis和mybatis-plus依赖的版本要对应,比如mybatis的3.5.2版本对应mybatis-plus的3.2.0版本 <dependency> <groupId>org.mybatis</groupId> <artifactId>m

2021-12-09 10:22:35 5078

原创 分页查询bugannot create inner bean ‘com.github.pagehelper.PageInterceptor#569cfc36‘

1.报错:警告: Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘sqlSessionFactory’ defined in class path resource [spring/spring-dao.xml]: C

2021-12-07 10:51:56 1531 2

原创 单向链表的增删改(Java)

单向链表的增删改(Java)链表节点的组成有数据元素(data域)和下一个节点的存储位置(next域)pubulic class Node{ public int data;//数据元素 public test next;//指向下一个节点 public int getData() { return data; } public void setData(int data) { this.data = data; }

2021-11-16 10:53:01 682

空空如也

空空如也

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

TA关注的人

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