自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 springboot集成druid连接池

1.导入druid maven坐标 <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.10</version> ...

2020-04-06 16:20:07 95

原创 spring-boot 集成Spring Data Redis

1. 添加Redis起步依赖<!--redis的starter依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis&...

2020-04-01 17:01:00 135

原创 SpringBoot快速入门

1. 创建Maven工程springboot_helloworld2. pom.xml文件中配置父坐标和web的起步依赖<!--继承一个pom文件--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring...

2020-04-01 13:35:08 83

原创 Spring Security 登录获取用户名

User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); System.out.println(user.getUsername());

2020-03-29 15:04:59 349

原创 数组的Map/filter/reverse/concat/forEach

实例 <script> // map var arr = [6,7,8,9] var newArr=arr.map(function (v) { return 2*v; }) //[12,14,16,18] console.log(JSON.stringif...

2020-03-12 21:43:23 113

原创 本地存储对象localStorage

实例 <script> // 本地存储对象localStorage var test=[ { name: "沙雕", age: 38}, { name: "傻叉", age: 38} ]; localStorage.setItem("test",JSON.stringify(test)); ...

2020-03-12 21:21:07 180

原创 java调用oracle存储过程

1.创建存储过程/*create [or replace] procedure 过程名(参数名 in|out 类型)asbeginend;*/--声明add_sal存储过程,给指定员工涨1000工资create procedure add_sal(pno in number)asbegin update emp set sal = sal + 1000 where e...

2020-03-09 12:26:47 147

原创 java连接oracle快速入门

1.创建maven工程(略)2.导入maven坐标 <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> &l...

2020-03-09 10:48:23 88

SQL2008 x64_CHS.part2.rar

SQL2008 x64_CHS.part2.rar

2022-03-22

SQL2008 x64_CHS.part1.rar

SQL2008 x64_CHS.part1.rar

2022-03-22

jdk-8u241-windows-x64.rar

jdk-8u241-windows-x64.rar

2021-04-27

微机原理8086汇编室温控制系统pro仿真

老师把题目发下来我都蒙了,csdn搜半天完全没有,最终我们把它完成了,用了8255A,8253A,8086cpu,pro仿真版本是8.6,发出来给各位参考一下

2020-07-11

空空如也

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

TA关注的人

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