数据库
首页 > 数据库> > hibernate4注解字段为mysql的text

hibernate4注解字段为mysql的text

作者:互联网

文章的正文detail就需要设置为text

在getter方法上添加注解

 @Lob
    @Basic(fetch = FetchType.LAZY)
    @Type(type = "text")
    @Column(name = "detail", nullable = true)
    public String getDetail() {
        return detail;
    }

删除表,让hibernate自己建表

运行效果

 

标签:hibernate4,Lob,建表,text,detail,getDetail,mysql,注解
来源: https://www.cnblogs.com/jnhs/p/11438742.html