[설정]

struts.xml

<struts>

...

<constant name="struts.custom.i18n.resources" value="프로퍼티 파일명(확장자는 빼고, 국가 문자열 빼고(_ko 등)" />

...

</struts>


[JSP]

...

<%@ taglib prefix="s" uri="/struts-tags" %>

...

<s:text name="err.msg" />

...


[Action]

...

getText("err.msg"); // ActionSupport 를 상속받아야함

...

+ Recent posts