文章列表
这个是自己写的用来缓存信息的类。
public class UserAbilityCache {
private Map<String, String> map = Collections.synchronizedMap(new HashMap<String, String>());;
private static UserAbilityCache cache = new UserAbilityCache();
private UserAbilityCache() {
Thread t = new timerThread();
t. ...
- 2009-06-18 15:12
- 浏览 1209
- 评论(1)