文章列表
安装ubuntu后要做的事
- 博客分类:
- ubuntu
1:安装vim ubuntu预装的是vim tiny版本,而需要的是vim full版本。执行下面的语句安装vim full版本:
$sudo apt-get remove vim-common
$sudo apt-get install vim
这样就行了,vim是一款优秀的软件,可以在运用中体会到。
2:开通ssh
首先更新源
sudo apt-get update
安装ssh服务
sudo apt-get install openssh-server
检测是否已启动
ps -e | grep ssh
看到有ssh字样, ...
TreeSet排序丢失记录
- 博客分类:
- java
昨天系统用户提示说查询到的记录少了,然后就开始进行各种纠结ing,查找源码,各种debug最后发现是在进入放入TreeSet的时候丢失了。
以下是定义的TreeSet
Set<Bill> set = new TreeSet<Bill>(new Comparator<Bill>() {
public int compare(Bill o1, Bill o2)
{
String shopNo1 = o1.getShopSysNo();
String shopNo2 = o2.getShopSysNo(); ...
项目使用spring + hibernate 因为现在接触到部分项目已经开始使用logback,所以想在现有的项目中使用logback
hibernate 本身采用的是slf4j所以直接把项目中导入logback就可以打印出hibernate日志
但是spring-core还是依赖commons-logging所以需要jcl-over-slf4j转到slf4j
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artif ...
今天打算把Virgo-tomcat-server从3.0.3升级到3.5.0,主要是因为我想脱离spring DM,进入blueprint的时代。
期间碰到些问题,各种classNotFoundException在此以作记录
以下为3.5.0官方变更链接
http://www.eclipse.org/virgo/download/release-notes/3.5.0.RELEASE.php
版本升级:
1:The familiar Virgo Jetty Server is now upgraded to Jetty 8.1.1.
2:Equinox and other ...
informax oracle null 空字符串
- 博客分类:
- 数据库
今天碰到一个问题 系统数据库迁移从informax到oracle,但是系统今天突然报错!郁闷了
经过查找是由于在informax里面对空字符串'' != null 但是在oracle ''==null
在此特记录下