一 java
1> hibernate移除单个对象的内存缓存。
getHibernateTemplate().getSessionFactory().getCurrentSession().evict(instance); //当前session去除该对象一级缓存
2> new date()获取当前时间异常问题
/**
SUN公司就已经推出了个新的日期类库Calendar,而与此同时Date里面的绝大多数方法都已经被标记为不推荐了,我当时还很奇怪,现在我重新查看了下Calendar中的方法,其使用工厂方法的形式不光提供了默认的时区方式的实现,也提供了Calendar.getInstance(zone)的实现
*/
/*
可使用下列语句
*/
TimeZone tz = TimeZone.getTimeZone("ETC/GMT-8");
TimeZone.setDefault(tz);
二 jsp
1> <li>元素自动换行
.tabs li{
float: left;
line-height: 26px;
margin-left: 5px;
_margin-left: 0px;
white-space: nowrap; // <li>的自动换行
}