String result = (String) redisTemplate.execute((RedisCallback<String>) connection -> {
JedisCommands jedisCommands = (JedisCommands) connection.getNativeConnection();
return jedisCommands.set(lockKey, requestId, SET_IF_NOT_EXIST, SET_WITH_EXPIRE_TIME,expireTime);
});