public BoardCountTimerTask() {
}
/**
* When an object implementing interface <code>Runnable</code> is used to create a thread, starting the
* thread causes the object's <code>run</code> method to be called in that separately executing thread.
*
* @todo Implement this java.lang.Runnable method
*/
public void run() {
try {
logger.info("Board count start...");
this.getBoardService().saveBoardsPostNumCount();
this.getCommendService().createCommendTopFile(20);
logger.info("Board count end");
}
catch (BbscsException ex) {
logger.error(ex);
}
}
是改
this.getCommendService().createCommendTopFile(20);
这个吗