Notice
Recent Posts
Recent Comments
Link
개발 무지렁이
[Spring Boot] Util클래스에서 원하는 포맷으로 날짜 가져오기 본문
Date 객체와 SimpleDateFormat 객체
[Util.java]
- new Date(), 현재 날짜와 시간이 저장된 Date 객체 반환
- 원하는 포맷 패턴을 파라미터로 넘겨 SimpleDateFormat 생성자 생성
- SimpleDateFormat의 format 메서드 이용
public class Util {
public static class date {
public static String getCurrentDateFormatted(String pattern) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);
return simpleDateFormat.format(new Date());
}
}
}
❓ 내부클래스를 사용하는 이유
: 내부 클래스는 딱히 외부에서 독자적으로 쓰일 일이 없으면
내부 클래스로 만들어주는 것이 좋다.
=> 코드의 의도를 명시적으로 표현
'Backend > 스프링부트' 카테고리의 다른 글
[Spring Boot] URL을 통해 이미지 다운받고 확장자 감지해서 저장하기 (0) | 2022.12.19 |
---|---|
[Spring Boot] Util클래스에서 파일의 확장자 가져오기 (0) | 2022.12.12 |
[Spring Boot] 프로필 이미지 노출 (0) | 2022.12.08 |
[Spring Boot] 프로필 이미지 제거 (0) | 2022.12.08 |
[Spring Boot] 테스트용 샘플DB 분리, 샘플데이터 생성 (0) | 2022.12.07 |
Comments