struts的html:text标签能不能格式化显示时间

2025-01-01 12:09:23
推荐回答(3个)
回答1:

没有此功能

在代码里把时间类型转成年月日类型。。再显示到页面

回答2:

在你的实体类或者model类的属性上加上 @DateTimeFormat(pattern = "yyyy-mm-dd HH:MM:SS")
格式可以自定义,如果只要年月就是@DateTimeFormat(pattern = "yyyy-mm-dd")
实例如下:
@DateTimeFormat(pattern = "yyyy-mm-dd HH:MM:SS")
private Date time;

回答3:

不行,如果你非要用标签实现的话,可以自定义一个标签。。。