Tomcat报java.lang.ClassNotFoundException: 1catalina.org.apache.juli.FileHandler 2015-08-28 tomcat 600 words 2 mins read 最近在生产环境部署Tomcat的时候,在启动的时候,在控制台 Read more..
Tomcat源码学习之导入源码工程到Eclipse 2015-08-25 tomcat 1304 words 3 mins read 测试环境为:Ubuntu 14.04 LTS + Tomcat 7.0.63 下载Tomcat源码 cd ~/Downloads wget Read more..
Linux技巧收集 2015-08-25 linux 2333 words 5 mins read 获取外网IP PUBLIC_IP=`wget http://ipecho.net/plain -O - -q ; echo` echo $PUBLIC_IP 直接显示: wget http://ipecho.net/plain -O - -q ; echo 查找历 Read more..
MySQL源码编译及使用单机多实例管理 2015-08-24 mysql 356 words 1 min read 本文的测试环境为 Ubuntu 14.04.2 LTS 64 bit + MySQL 5.6 下载源码并安装及初始化数据库 Read more..
MySQL Explain 详解 2015-08-20 mysql 4557 words 10 mins read 用法 explain select xxx id 列 从ID列可以判断SQL的执行顺序:从大到小,如 Read more..
<数据库索引设计与优化>读书笔记一 2015-08-13 sql 3918 words 8 mins read 误区和误解 误区1: 索引层级不要超过5层 这个通常基于的假设就是 Read more..
Eclipse遇到Unable to load the mojo错误 2015-08-06 java 102 words 1 min read Eclipse在进行 Maven更新时出现错误Unable to load Read more..
ubuntu 开发环境配置 2015-08-04 ubuntu 668 words 2 mins read 安装必要的编译环境 sudo apt-get update && sudo apt-get install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev build-essential 安装从这里打开终 Read more..
Ubuntu下SSD优化 2015-08-03 linux 283 words 1 min read 检查4K对齐 ✗ sudo fdisk -lu Disk /dev/sda: 500.1 GB, 500107862016 bytes 255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors Units = sectors of 1 Read more..
关于Java应用启动时报 could not find the document 错误的问题及解决 2015-07-30 java 807 words 2 mins read 这两天发现到一个很奇怪的问题,就是应用有时候在启动的时候,会 Read more..
Nginx + Tomcat + Session 共享解决方案 2015-07-29 java 1952 words 4 mins read 注意, 这里使用的是 Linux + Tomcat 7.x + JDK 7 + Nginx + Spring Session 的方式 安装Redi Read more..
Java中的Comparator使用 2015-07-27 java 901 words 2 mins read Comparator 与 Comparable 比较器,一般用于排序的时候。即如果某个没有实现Comp Read more..