RocketMQ

RocketMQ 简介

1
2
参考文档:http://www.jianshu.com/p/453c6e7ff81c#
https://www.aliyun.com/product/ons?spm=5176.8142029.388261.82.BFHC5a

pull consumer 与 push consumer区别

1
参考文档:https://yq.aliyun.com/articles/55627

关于mina.md

关于mina

1
2
3
4
5
6
7
官方文档:http://mina.apache.org/mina-project/documentation.html
中文文档: https://waylau.gitbooks.io/apache-mina-2-user-guide/ (vpn)
http://blog.csdn.net/defonds/article/category/1844073
参考博客:http://blog.csdn.net/huwenfeng_2011/article/details/43413009

工作原理

more >>

hexo 提交到搜索引擎

前言

1
2
3
4
本文主要是为了搜索引擎可以更加友好的搜到我们指定的站点内容。
参考文章:http://www.jianshu.com/p/619dab2d3c08
https://codingbubble.github.io/2015/05/08/custom-your-Hexo/
http://azeril.me/blog/Markdown-Syntax.html

提交到chrome搜索引擎

1
2
可以通过如下方式来查看chrome是否已经收录我们的站点
site:https://nickliuyong.github.io/blogs/

提交到搜索引擎

Google搜索引擎入口

more >>

java线程中sleep、wait、join的理解

sleep

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class Thread1 implements Runnable {
private Test test;
public Thread1(Test test) {
this.test = test;
}
public void run() {
synchronized (test){
try{
System.out.println("Thread1....");
System.out.println("等待中");
//不释放线程资源
Thread.sleep(3000);
System.out.println("资源释放");
}catch (Exception e){
}
}
}
}

more >>

jdbc的加载过程

jdbc连接mysql数据库

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 获取数据库连接的函数*/
public static Connection getConnection() {
Connection con = null; //创建用于连接数据库的Connection对象
try {
Class.forName("com.mysql.jdbc.Driver");// 加载Mysql数据驱动
con = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/myuser", "root", "root");// 创建数据连接
} catch (Exception e) {
System.out.println("数据库连接失败" + e.getMessage());
}
return con; //返回所建立的数据库连接
}

more >>