<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[RollingInTheDeepc的博客]]></title><description><![CDATA[个人知识点积累]]></description><link>https://blog.csdn.net/RollingInTheDeepc</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; RollingInTheDeepc]]></copyright><item><title><![CDATA[从总结中更加深刻认识redis]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/102482018</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/102482018</guid><author>RollingInTheDeepc</author><pubDate>Thu, 10 Oct 2019 16:11:29 +0800</pubDate><description><![CDATA[从总结中更加深刻认识redis1.redis 是什么2.redis 干什么3.对比关系型数据库Mysql,我们来看看redis
1.redis 是什么
2.redis 干什么
3.对比关系型数据库Mysql,我们来看看redis

...]]></description><category></category></item><item><title><![CDATA[MySQL从使用到进阶]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/102472245</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/102472245</guid><author>RollingInTheDeepc</author><pubDate>Thu, 10 Oct 2019 12:42:22 +0800</pubDate><description><![CDATA[MySQL从使用到进阶1.关系型数据库中的佼佼者2.MySQL数据库服务器3. MySQL 数据库服务器的优化方案4. MySQL 数据库的创建5.Mysql 数据表的创建6. Mysql 索引6.1 索引的原理 B+ tree6.2 索引最左匹配原则7. Mysql 存储引擎8.Mysql 数据表中数据的操作8.1 数据的增删改8.2 数据的查询（重点）
1.关系型数据库中的佼佼者
MySQL作...]]></description><category></category></item><item><title><![CDATA[有了ThreadPoolExecutor，还有Thread什么事]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/102469346</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/102469346</guid><author>RollingInTheDeepc</author><pubDate>Wed, 09 Oct 2019 23:22:20 +0800</pubDate><description><![CDATA[有了ThreadPoolExecutor，还有Thread什么事1.线程池是什么2.线程池的作用3.如何使用4.线程中出现的坑
1.线程池是什么
2.线程池的作用
3.如何使用
4.线程中出现的坑

...]]></description><category></category></item><item><title><![CDATA[HashMap源码追踪]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/102468936</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/102468936</guid><author>RollingInTheDeepc</author><pubDate>Wed, 09 Oct 2019 20:12:40 +0800</pubDate><description><![CDATA[HashMap源码追踪1.HashMap简介2.从类的层次看HashMap3.构造函数以及常用的Api3.1 构造函数4. 常用的方法4.1 HashMap 主要用于数据的增删改查，所以常用的Api主要按照增删改查进行分类5. 源码追踪5.1 put 元素的过程6. 这么重要的类，JDK 肯定在不停的优化它7.使用HashMap注意问题总结
1.HashMap简介
HashMap作为开发中使用频率...]]></description><category></category></item><item><title><![CDATA[elasticsearch之旅----------------Linux中安装部署]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/88699720</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/88699720</guid><author>RollingInTheDeepc</author><pubDate>Wed, 20 Mar 2019 23:22:02 +0800</pubDate><description><![CDATA[elasticsearch学习----------------Linux中安装部署一.安装前提二. 获取相应的安装包三.配置并且安装es
一.安装前提
1.linux中安装了jdk，并且配置了java环境变量（如果不会可以自行百度）

2.elasticsearch 5点几 的版本要求 jdk的版本在 1.8以上


二. 获取相应的安装包
1.es 官网提供的安装包
 
   wget http...]]></description><category></category></item><item><title><![CDATA[计算机网络知识（一）]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/87297340</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/87297340</guid><author>RollingInTheDeepc</author><pubDate>Tue, 19 Feb 2019 11:00:17 +0800</pubDate><description><![CDATA[计算机网络知识（一）一.计算机协议1.1  Osi七层协议模型1.2 五层协议1.3 tcp/ip协议群（实际中使用的协议群）二.主机之间通信过程2.1 主机之间通信的大致过程三.tcp/ip协议群3.1 网络接口层
一.计算机协议
1.1  Osi七层协议模型




分层
协议




物理层
物理层主要是定义网卡等，网线等物理设备的管理


数据链路层
数据链路传输的帧，将网络的层传递的IP...]]></description><category></category></item><item><title><![CDATA[java 8新特性（二）stream流编程]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/86603505</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/86603505</guid><author>RollingInTheDeepc</author><pubDate>Tue, 22 Jan 2019 23:54:50 +0800</pubDate><description><![CDATA[java 8新特性（二） 函数式编程一. stream流1.1 什么是stream流1.2 使用stream 流编程的好处（为何使用stream流）1.3 如何获取stream 流二. stream流的中间操作三.stream流的触发操作（终止操作）
一. stream流
1.1 什么是stream流
stream与传统中java使用的流不一致，区别于Java中的字节流，字符流，磁盘I/O流和网络...]]></description><category></category></item><item><title><![CDATA[java 8新特性（一） 函数式编程]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/86567854</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/86567854</guid><author>RollingInTheDeepc</author><pubDate>Sun, 20 Jan 2019 23:25:51 +0800</pubDate><description><![CDATA[一.Java中的编程范式
1.面向对象编程（java是纯面向对象的编程语言，除了基本的数据类型，其他的都是面向对象编程）
2.面向切面编程（AOP，jdk动态代理，cglib动态代理）
3.函数式编程（java 8 中JDK版本中最大变化的版本）
二.函数式接口

函数式接口概念：接口中，有且仅有一个没有实现方法，叫函数式接口。

/**
 * @author chenjingbing
 * 函数...]]></description><category></category></item><item><title><![CDATA[面向对象]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80822994</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80822994</guid><author>RollingInTheDeepc</author><pubDate>Wed, 27 Jun 2018 00:25:34 +0800</pubDate><description><![CDATA[ 
 java面向对象（高级进阶）  




1.面向对象的三大特性



封装：通过Java的权限修饰符，对Java类中的成员进行修饰。对外提供一些接口，便是java的封装


继承：Java中的通过extends关键字的，子类继承父类。


多态：Java中的继承，也体现了java中的多态属性





2.JVM的内存划分





3.Java中的权限修饰符



public 可以修饰...]]></description><category></category></item><item><title><![CDATA[spring-boot之springmvc]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80788142</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80788142</guid><author>RollingInTheDeepc</author><pubDate>Sat, 23 Jun 2018 23:40:25 +0800</pubDate><description><![CDATA[
  
  
 spring-boot之springmvc
   
  










###1.spring-boot中的spring-boot-starter-web使用



1.spring-boot中不需要像传统的SSM框架整合一样，需要配置springmvc的前端控制器DispatcherServlet。
2.spring-boot为web层提供了spring-boot-star...]]></description><category></category></item><item><title><![CDATA[spring boot文档]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80767973</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80767973</guid><author>RollingInTheDeepc</author><pubDate>Fri, 22 Jun 2018 00:01:24 +0800</pubDate><description><![CDATA[


  
  
   spring boot开发文档
   
  






spring boot优点



java EE开发框架的发展流程





spring-boot的优势

 
 
1.简化了大量的xml配置文件，spring-boot对java ee web开发的常用的组件做了一定的封装 
 
2.spring-boot创建项目时，可以实现零配置。无需和ssm框架一样，配置sp...]]></description><category></category></item><item><title><![CDATA[spring框架技术点总结]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80753396</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80753396</guid><author>RollingInTheDeepc</author><pubDate>Wed, 20 Jun 2018 22:16:17 +0800</pubDate><description><![CDATA[


  
  
   spring知识点总结
   
  






spring架构思想(一站式开发框架)



1.spring官方给出的架构图





#实际开发中spring架构给我们的开发思路


 core Container层

模块名
作用


beans
spring作为IOC容器，可以管理项目中的实体类，以bean的形式交由spring 容器管理


core
core作...]]></description><category></category></item><item><title><![CDATA[mybatis数据库框架]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80727414</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80727414</guid><author>RollingInTheDeepc</author><pubDate>Mon, 18 Jun 2018 22:48:53 +0800</pubDate><description><![CDATA[ 
 mybatis数据库框架  




mybatis架构设计





mybatis主配置文件(sqlMapConfig.xml)

- SqlMapConfig配置文件为mybatis的主配置文件 
 
 
配置项 
配置内容 
 
 
mapper映射文件 
加载所有的映射文件到主配置文件中 
 
 
插件配置 
如mybatis的分页插件的配置 
 
 
别名配置 
别名配置主要是用...]]></description><category></category></item><item><title><![CDATA[数据库事务]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80637533</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80637533</guid><author>RollingInTheDeepc</author><pubDate>Sat, 09 Jun 2018 23:40:03 +0800</pubDate><description><![CDATA[ 
 数据库事务  




MySQL中的事务



1.原生的sql语句是关闭事务（对于增删改查都是没有开启事务的）mysql是关闭事务，但是Oracle数据库是自动的开启事务的

`use crm;
start transaction;//开启事务
create table userinfo3(
id  int PRIMARY KEY auto_increment,
username var...]]></description><category></category></item><item><title><![CDATA[hibernate]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80503526</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80503526</guid><author>RollingInTheDeepc</author><pubDate>Tue, 29 May 2018 22:58:56 +0800</pubDate><description><![CDATA[ 
 hibernate数据库框架  




ORM对象关系映射框架hibernate


hibernate是一款ORM数据库框架，以面向对象的思维操作数据库。
hibernate支持多种数据库，只需要在配置文件中书写数据库的方言，hibernate就能做到与数据无关。
hibernate支持具有自动建表的功能，能过根据实体类创建数据库表。




hibernate框架的配置文件



1....]]></description><category></category></item><item><title><![CDATA[java反射]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80473577</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80473577</guid><author>RollingInTheDeepc</author><pubDate>Sun, 27 May 2018 22:25:38 +0800</pubDate><description><![CDATA[ 
 java反射技术  






1.运行一个类的过程（java xx.class的过程）





2.java反射机制实现的过程



（1）类加载器的种类：



加载器的名称
作用


bootstrap classloader
加载核心类库


extension classloader
加载扩展类库


system classloader
加载第三方写的类





3.反射基...]]></description><category></category></item><item><title><![CDATA[java读取properties文件内容]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80458765</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80458765</guid><author>RollingInTheDeepc</author><pubDate>Sat, 26 May 2018 08:12:10 +0800</pubDate><description><![CDATA[ 
 java读取properties文件内容  






1.原生java读取properties文件的内容

    //1.创建文件读取流对象
    //未解决问题：maven工程中读取resources目录下的配置文件的地址
   FileReader reader = new  FileReader(&quot;F:/java-tools/workspace/test-project/src...]]></description><category></category></item><item><title><![CDATA[easyui学习笔记]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/80010264</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/80010264</guid><author>RollingInTheDeepc</author><pubDate>Thu, 19 Apr 2018 20:18:02 +0800</pubDate><description><![CDATA[


  easyui学习笔记







目录


快速入门
依赖说明
布局方式
表单控件
数据校验




依赖说明

1.easyui依赖于jquery框架之上，在使用easyui需要导入jquery相关的文件。
2.引入文件说明

 //样式文件必选
&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;${Config.baseURL }vie...]]></description><category></category></item><item><title><![CDATA[GeneratorSqlmap使用方法]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/79860050</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/79860050</guid><author>RollingInTheDeepc</author><pubDate>Sun, 08 Apr 2018 23:51:41 +0800</pubDate><description><![CDATA[GeneratorSqlmap自动生成mybatis映射文件和domian实体类

1.主程序中加载main方法，通过main方法生成实体类以及映射文件


public class GeneratorSqlmap {

    public void generator() throws Exception{

        List warnings = new ArrayList();
 ...]]></description><category></category></item><item><title><![CDATA[Jquery easyui入门案例]]></title><link>https://blog.csdn.net/RollingInTheDeepc/article/details/79844143</link><guid>https://blog.csdn.net/RollingInTheDeepc/article/details/79844143</guid><author>RollingInTheDeepc</author><pubDate>Sat, 07 Apr 2018 19:33:40 +0800</pubDate><description><![CDATA[Jquery easyui入门案例

 
1.引入插件中的js和css文件
 
2.easyui页面的布局(easyui-layout)
 
(1)设置每个区域的宽度
(2)通过设置标题使区域具有折叠的效果 
 

3.easyui折叠面板（easyui-accordion）
 
(1)设置每个区域的宽度
(2)通过设置标题使区域具有折叠的效果 
 

4.easyui选项卡（easyui-acc...]]></description><category></category></item></channel></rss>