hibernate jpa 注解 @Temporal(TemporalType.DATE) 格式化时间日期,页面直接得到格式化类型的值

1.日期:

@Temporal(TemporalType.DATE)
 @Column(name = "applyDate", nullable = false, length = 10)
 public Date getApplyDate() {
  return applyDate;
 }

在页面端取值:2011-04-12

  2.时间:

@Temporal(TemporalType.TIME)

在页面端取值:22:50:30

 3.日期和时间(默认):

@Temporal(TemporalType.TIMESTAMP) 
在页面端取值:2011-04-12 22:51:34.0

JSTL 格式化date

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>


Dates
Tag Output 
Attribute: value; required. Tag has no body. 


 2004-4-1 13:30:00  


 2004-5-31 23:59:59  
Attribute: type; optional. Indicates what to print: date, time, or both. 


 2004-4-1  


 23:59:59  
Attribute: dateStyle; optional. Varies the date format. 


 2004-5-31  


 04-5-31  


 2004-5-31  


 2004年5月31日  


 2004年5月31日 星期一  
Attribute: timeStyle; optional. Varies the time format. 


 23:59:59  


 下午11:59  


 23:59:59  


 下午11时59分59秒  


 下午11时59分59秒 CDT  
Attribute: pattern; optional. Inidcates date/time custom patterns. 


 星期四, 四月 1, 2004 13:30:00 -0600  

你可能感兴趣的:(【Java技术】)