@Transient的用法和格式化页面展示的数据格式
一、Hibernate中:@Transient用法
用法1:使用@Transient这个注解添加表中不存在字段。将这个注解添加到自定义字段的get方法上
用法2:将该注解添加到定义该字段的头部即可,例如:
@Transient private String str;
即放在实体类的成员变量上部。
二、
在开发中,会遇到数据库中查询出来的数据在页面展示的时候格式不是想要的,例如:
这样商城展示价格需要小数两位,当需要在页面格式的时候解决办法如下:
1.在实体类中增加一个get方法,
private String price;
@Column(name = "price", length = 20)
public String getPrice() {
return this.price;
}
public void setPrice(String price) {
this.price = price;
}
@Transient
public String getPriceStr(){
return new
DecimalFormat("0.00").format(Double.parseDouble(this.getPrice()));
}
2.在页面取值时原来是:${对象.price},现在写成${对象.priceStr}
举例2:
@Transient public String getOperatorTimeStr(){ return DateUtil.dateToString(this.getOperationTime(),"yyyy-MM-dd HH:mm:ss"); }