private volatile static ConcurrentMap locks = new ConcurrentHashMap<>();
private static Object getLock(String lockName) {
if (!locks.containsKey(lockName)) {
//这一句会存在并发问题
locks.put(lockName, new String("我是值:*********************************************************************************"+Thread.currentThread().getId()+"______"+Thread.currentThread().getName()+"_________加了一次"+System.currentTimeMillis()));