반응형
자바에서 GUID 및 UUID 를 생성하는법에 대해서 다룰 포스팅이다.
UUID 와 GUID등에 대해서는 아래 참고 포스팅을 참고 바란다.
String으로 UUID를 만드려며 Java.Util 클래스를 사용한다.
아래와 같다.
import java.util.UUID; public class Main { public static void main(String[] args) { String uuid = UUID.randomUUID().toString(); System.out.println(uuid); } } |
참고 포스팅
https://thenicesj.tistory.com/675
https://thenicesj.tistory.com/802
반응형
'IT > Java' 카테고리의 다른 글
LocalDateTime 요일 구하기 (28) | 2024.01.11 |
---|---|
[JPA] @DynamicInsert, @DynamicUpdate 란? (18) | 2024.01.10 |
[Error] After saving the identifier must not be null! (17) | 2024.01.04 |
숫자 자리수 0으로 채우기 (37) | 2023.12.28 |
@ColumnDefalut Annotation (35) | 2023.12.27 |
댓글