<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[nostalie·风暴烈酒]]></title><description><![CDATA[学习笔记]]></description><link>https://blog.csdn.net/u014798233</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; u014798233]]></copyright><item><title><![CDATA[spring mybatis]]></title><link>https://blog.csdn.net/u014798233/article/details/64663516</link><guid>https://blog.csdn.net/u014798233/article/details/64663516</guid><author>u014798233</author><pubDate>Wed, 22 Mar 2017 00:24:54 +0800</pubDate><description><![CDATA[http://www.mamicode.com/info-detail-1248286.html]]></description><category></category></item><item><title><![CDATA[Linux基础篇随手笔记]]></title><link>https://blog.csdn.net/u014798233/article/details/56843514</link><guid>https://blog.csdn.net/u014798233/article/details/56843514</guid><author>u014798233</author><pubDate>Fri, 24 Feb 2017 16:08:51 +0800</pubDate><description><![CDATA[ls  
-t 时间降序
-r 反序一、which、whereis、locate、find
which 根据环境变量查找可执行文件 eg: which pwd
whereis -b 查找2进制文件 -s 查找源码文件 根据文件数据库查找速度快，但是实时性不好
locate 根据文件数据库查找文件
find 路径 操作 行为 find /home -name "nostalie";find /home]]></description><category></category></item><item><title><![CDATA[Java正则表达式随手笔记]]></title><link>https://blog.csdn.net/u014798233/article/details/56020884</link><guid>https://blog.csdn.net/u014798233/article/details/56020884</guid><author>u014798233</author><pubDate>Mon, 20 Feb 2017 19:46:50 +0800</pubDate><description><![CDATA[一、package com.qunar.flight;import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;/**
 * Created by nostalie on 17-2-20.
 */
public class Patt]]></description><category></category></item><item><title><![CDATA[Java日期相关随手笔记]]></title><link>https://blog.csdn.net/u014798233/article/details/55671346</link><guid>https://blog.csdn.net/u014798233/article/details/55671346</guid><author>u014798233</author><pubDate>Sat, 18 Feb 2017 21:12:23 +0800</pubDate><description><![CDATA[一、SimpleDateFormat 
    a) 创建DateFormat对象 
     
    //24小时制 HH大写 
    DateFormat df1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
    //12小时制 hh小写 
    DateFormat df2 = new SimpleDateFormat("yyyy-M]]></description><category></category></item><item><title><![CDATA[java枚举学习笔记]]></title><link>https://blog.csdn.net/u014798233/article/details/53876901</link><guid>https://blog.csdn.net/u014798233/article/details/53876901</guid><author>u014798233</author><pubDate>Sun, 25 Dec 2016 23:58:23 +0800</pubDate><description><![CDATA[1、简单介绍a）enum继承了Enum类，而java属于单继承，故enum不能再继承其他类，但可以实现接口。 
b）枚举属于全局变量，不能实例化enum故，构造器为private类型。 
定义一个枚举类型：package com.qunar.flight.model;/**
 * Created by nostalie.zhang on 2016/12/21.
 */
public enum Col]]></description><category></category></item><item><title><![CDATA[ThreadLocal与InheritableThreadLocal学习笔记]]></title><link>https://blog.csdn.net/u014798233/article/details/53866629</link><guid>https://blog.csdn.net/u014798233/article/details/53866629</guid><author>u014798233</author><pubDate>Sun, 25 Dec 2016 02:59:56 +0800</pubDate><description><![CDATA[首先说明，现在我坚定的认为这两个东西并不是像有的博主说的是用来解决 “共享变量的访问冲突”的。那么他们是用来干嘛的呢？顾名思义他们都和当前线程的本地变量有关。1、ThreadLocala）先来看一段代码：package net.csdn.blog;
import static java.lang.Thread.sleep;
/**
 * Created by nostalie.zhang on 20]]></description><category></category></item><item><title><![CDATA[随笔]]></title><link>https://blog.csdn.net/u014798233/article/details/53729586</link><guid>https://blog.csdn.net/u014798233/article/details/53729586</guid><author>u014798233</author><pubDate>Sun, 18 Dec 2016 20:34:07 +0800</pubDate><description><![CDATA[http协议AOP编程]]></description><category></category></item><item><title><![CDATA[java反射之动态代理学习笔记]]></title><link>https://blog.csdn.net/u014798233/article/details/53729514</link><guid>https://blog.csdn.net/u014798233/article/details/53729514</guid><author>u014798233</author><pubDate>Sun, 18 Dec 2016 20:25:36 +0800</pubDate><description><![CDATA[下面是我写的一个小demo，先来看代码package com.csdn.demo;import com.zhang.jian.zhang;import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;/**
 * Created by zhang]]></description><category></category></item><item><title><![CDATA[servlet相关笔记(web.xml基础配置）]]></title><link>https://blog.csdn.net/u014798233/article/details/53728793</link><guid>https://blog.csdn.net/u014798233/article/details/53728793</guid><author>u014798233</author><pubDate>Sun, 18 Dec 2016 17:57:15 +0800</pubDate><description><![CDATA[1、servlet    <servlet>
        <servlet-name>login</servlet-name>
        <servlet-class>com.csdn.servlet.LoginServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <s]]></description><category></category></item><item><title><![CDATA[MySQL索引学习笔记]]></title><link>https://blog.csdn.net/u014798233/article/details/53727113</link><guid>https://blog.csdn.net/u014798233/article/details/53727113</guid><author>u014798233</author><pubDate>Sun, 18 Dec 2016 13:57:11 +0800</pubDate><description><![CDATA[先来简单说说Hash索引和B+Tree索引。Hash索引的结构和Java中HashMap的实现非常相似，通过hash算法将索引值生成存储地址，因此Hash索引的精确查找是非常快速的（但是范围查找的话…就相当于没有索引了）。B+树索引则是通过将索引值以B+树的结构存储，每次查找都要遍历来查找索引值（但由于B+树是平衡有序的因此可以提升查找速度）。接下来我们主要介绍mysql的两种存储引擎（当然还有其他]]></description><category></category></item></channel></rss>