http://www.cnblogs.com/jingpeipei/p/5945724.html
按照操作没有问题。但是自己操作就有问题。
最后发现struts2的类型转换器在输出是必须用strut2标签
<s:property 进行输出才行>
通过${el}表达式进行输出。不会格式化。
<%@taglib uri="/struts-tags" prefix="s"%>
<html>
<head>
</head>
<body>
<!-- 错误信息 -->
<s:fielderror></s:fielderror>
<!-- 表单的提交 -->
<%-- <s:form action="dateConverter" method="post">
<div class="infos">
<table class="field">
<tr><td>用户名:<s:textfield name="user.username" /></td>
</tr>
<tr><td>年龄:<s:password name="user.age"/></td>
</tr>
<tr><td>生日:<s:textfield name="birthday"/> </td>
</tr>
<tr><td><s:submit type="submit" value="提交"/></td></tr>
</table>
</div>
</s:form> --%>
<form action="dateConverter" method="post">
<table class="field">
<tr><td>生日:<s:textfield name="birthday"/> </td>
</tr>
<tr><td><s:submit type="submit" value="提交"/></td></tr>
</table>
</form>
<%-- <s:property value="user.birthday"/>
<s:date name="user.birthday" format="yyyy年MM月dd日"/> --%>
<s:property value="birthday"/>
${birthday}
</body>
</html>