ThreadLocalUtils (工具类四)
package com.menglar.soap.item.common.utils;
public class ThreadLocalUtils {
private final static ThreadLocal
/**
* 设置数据到当前线程
*/
public static void set(Object o){
userThreadLocal.set(o);
}
/**
* 获取线程中的数据
* @return
*/
public static Object get( ){
return userThreadLocal.get();
}
}
共有 0 条评论