출처 : http://noritersand.tistory.com/256 기능 : 지역, 메시지 형식, 숫자 및 날짜형식 directive : <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 목차 requestEncoding setLocale bundle setBundle message formatNumber parseNumber formatDate parseDate setTimeZone, timeZone 국제화 및 지역화 태그로 다국어 문서를 처리할 때 유용하고, 날짜와 숫자 형식을 다룰 때 사용된다. I18N - 국제화(Internationalization) 태그라고도 한다. requestEncoding request.setCharacterEncoding() 역할이 같다. <fmt:requestEncoding [value="charsetName"]/> setLocale 다국어를 지원하는 페이지를 만들때 ResourceBundle로 불러오는 properties 파일들과 연계하여 사용한다. <fmt:setLocale value="locale" [variant="variant"] [scope="{page|request|session|application}"]/> <% @ page language = "java" contentType = "text/html; charset=UTF-8" pageEncoding = "UTF-8" %> <% @ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl...