文章的正文detail就需要设置为text
在getter方法上添加注解
@Lob @Basic(fetch = FetchType.LAZY) @Type(type = "text") @Column(name = "detail", nullable = true) public String getDetail() { return detail; }
删除表,让hibernate自己建表
运行效果
原文:https://www.cnblogs.com/jnhs/p/11438742.html