카테고리 없음

Spring / regDate 다르게 출력하기

mommos 2022. 5. 17. 22:52

날짜를 출력하다보면 이런식으로 출력되는 날짜를 바꾸는법이다

 

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

jsp 상단에 추가해준다

 

 

 

${jokbal_comment.regDate }

<fmt:formatDate value="${jokbal_comment.regDate}" pattern="yyyy-MM-dd" />

위의 첫줄과 같이 출력하던걸 두번째 줄의 형식으로 바꿔준다

 

이렇게 변환된다