自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Java数组模拟队列代码实现

Java数组模拟队列代码的实现

2022-04-27 23:58:04 147

原创 Java稀疏数组

Java稀疏数组

2022-04-27 16:38:37 292

原创 Mybatis-config.xml中映射Mapper.xml文件遇到的错误

刚开始配置如下 <mappers> <mapper resource="com.xieny.dao/UserMapper.xml" /> </mappers> 报错如下 Caused by: java.io.IOException: Could not find resource com.xieny.dao/UserMapper.xml 修改路径格式后成功运行 <mappers> <mapper resource="

2022-03-16 01:07:07 761

原创 C++ 通讯录管理系统

// // 通讯录.cpp // tel_list // // Created by xieny on 2022/3/2. // #include #include #define MAX 1000 using namespace std; #include <stdlib.h> struct Person { string m_Name; //1. man 2.famale int m_Sex; int m_Age; string m_Phone; string m_Addr; };

2022-03-06 03:08:12 567

原创 If you want an embedded database (H2, HSQL or Derby)

Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. 1 解决方案: 在启动类上加: @EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})

2020-12-16 14:48:23 263

空空如也

空空如也

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

TA关注的人

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