ejb3.1 timer
1015 단어 EJB3.1
http://www.rainripple.com/articles/ejb3-1-timer-service.html
1. Timers 는 기본적으로 지 속 됩 니 다.
그래서 설정 을 해 야 돼 요.
persistent 설정:
timerConfig.setPersistent(false);
@Schedule(persistent=false..
2. 오래 간다 면 가능
JBOSS 홈 디 렉 터 리 \ server \ [default] \ \ data 폴 더 를 비우 면 됩 니 다.
3. 예
전환 하 다
http://www.infoq.com/cn/news/2010/02/jee6_ejb_31
@javax.ejb.Singleton
public class ChatRoom {
private java.util.Map<User,Collection<String>> userComments;
@javax.ejb.Schedule(minute="1", hour="*")
public void cleanOutOldDataFromChatLogs() {
/** ... not reprinting all the existing code ... */
}
}