📄 logtasktest.java
字号:
package test.timer;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import java.util.Timer;
/**
* LogTask客户应用
*
* @author luoshifei
*/
public class LogTaskTest {
protected static final Log log = LogFactory.getLog(LogTaskTest.class);
public static void main(String[] args) {
Resource resource = new ClassPathResource("timer-app.xml");
BeanFactory factory = new XmlBeanFactory(resource);
Timer timer = (Timer) factory.getBean("timerFactory");
try {
Thread.sleep(20000);
} catch (InterruptedException e) {
log.error("InterruptedException", e);
}
timer.cancel();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -