* 以下维护日志
* */
InetAddress ia = InetAddress.getLocalHost();
String hostname = ia.getHostName();//获取本机的hostname
String logName = "index";
LocalhostLogId id = new LocalhostLogId(hostname, logName);
LocalhostLog indexLog = localhostLogDAO.findById(id);
if(indexLog ==null)//本机还没有作索引,直接创建索引
{
indexLog = new LocalhostLog(id);//新建日志的记录
Timestamp currentDate = new Timestamp(new Date().getTime());