用hibernate提取的日期,显示在页面是短日期格式(年份不全)
比如说数据库里存储的是"2012-1-1",显示在页面控件里的是"12-1-1“,怎样才能显示完整的年份呢?不要用js来实现,谢谢product.hbm.xml-----...
比如说数据库里存储的是"2012-1-1",显示在页面控件里的是"12-1-1“,怎样才能显示完整的年份呢?不要用js来实现,谢谢
product.hbm.xml----------------------
<hibernate-mapping>
<class name="com.hycrm.bean.Product" table="PRODUCT" schema="LIVELL">
<id name="productid" type="integer">
<column name="PRODUCTID" precision="8" scale="0" />
</id>
<property name="productname" type="string">
<column name="PRODUCTNAME" length="50" />
</property>
<property name="datebeg" type="java.sql.Date">
<column name="DATEBEG" />
</property>
<property name="dateend" type="java.sql.Date">
<column name="DATEEND" />
</property>
</class>
</hibernate-mapping>
product.java--------------------------------
public class Product implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private Integer productid;
private String productname;
private Date datebeg;
private Date dateend;
getters &setters……
}
productedit.jsp:------------------------------------
<s:form name="theForm" action="productUpdate" theme="simple">
上架日期
<s:textfield name="prod.datebeg" onchange="setDateEnd()"></s:textfield>
下架日期
<s:textfield name="prod.dateend"></s:textfield>
</s:form> 展开
product.hbm.xml----------------------
<hibernate-mapping>
<class name="com.hycrm.bean.Product" table="PRODUCT" schema="LIVELL">
<id name="productid" type="integer">
<column name="PRODUCTID" precision="8" scale="0" />
</id>
<property name="productname" type="string">
<column name="PRODUCTNAME" length="50" />
</property>
<property name="datebeg" type="java.sql.Date">
<column name="DATEBEG" />
</property>
<property name="dateend" type="java.sql.Date">
<column name="DATEEND" />
</property>
</class>
</hibernate-mapping>
product.java--------------------------------
public class Product implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private Integer productid;
private String productname;
private Date datebeg;
private Date dateend;
getters &setters……
}
productedit.jsp:------------------------------------
<s:form name="theForm" action="productUpdate" theme="simple">
上架日期
<s:textfield name="prod.datebeg" onchange="setDateEnd()"></s:textfield>
下架日期
<s:textfield name="prod.dateend"></s:textfield>
</s:form> 展开
展开全部
日期类型换成Java.util.Date试试看不行了,就在后台格式化下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把映射文件里的时间类型java.sql.Date改成java.util.Date试试
追问
试过了不行,我用debug查看到Product.datebeg 的值是完整的,就是在页面显示出来的不完整
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询