struts2标签格式化日期

从数据库取得日期在前端用struts2标签取出来默认是yyyy-MM-dd格式,需求中要求 yyyy年MM月dd日 和 yyy年MM月dd日前 格式。
struts2用s:date标签处理如下:basicInformation是后台传过来的对象。
<s:date name="basicInformation.beginSaleTime" format="yyyy年MM月dd日"/>
<s:date name="basicInformation.repayMentDate" format="yyyy年MM月dd日前"/>

你可能感兴趣的:(struts标签日期格式化)