Spring

숫자(가격) 포맷

JJJAEOoni 2022. 7. 7. 17:25
반응형
private Integer price;

// price 3자리마다 콤마 format
public String getFormatPrice() {
	DecimalFormat decFormat = new DecimalFormat("###,###");
	return decFormat.format(price);
}

 

jsp에서 getter 호출 후 포맷터 때림!

<td>${productList.formatPrice }원</td>
반응형