cn.cloudscope.oss.utils.UUIDUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oss-spring-boot-starter Show documentation
Show all versions of oss-spring-boot-starter Show documentation
A Spring Boot Starter for OSS storage
package cn.cloudscope.oss.utils;
import java.util.UUID;
/**
* 无法补充
*
* @author wupanhua
* @date 2019/8/6 15:28
*
*
* www.cloudscope.cn
* Copyright (c) 2019. All Rights Reserved.
*
*/
public class UUIDUtil {
private UUIDUtil() {
// make constructor private
}
public static String buildUuid() {
return UUID.randomUUID().toString().replace("-", "");
}
}