30

我想使用 Spring MVC 和 Hibernate 在 PostgresQL 中存储一个实体(一个字符串 + 一个图像)这是我的表。图像应该是oid的类型。

CREATE TABLE document
(
  name character varying(200),
  id serial NOT NULL,
  content oid,   // that should be the image
  CONSTRAINT document_pkey PRIMARY KEY (id )
)
WITH (
  OIDS=FALSE
);

这是我要存储的实体。

    @Entity
    @Table(name = "document")
    public class Document {

        @Id
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        @Column(name = "id")
        private Long id;

        @Column(name = "name")
        private String name;

        @Column(name="content")
            private Blob content;  //this is the image
//getters- setters

你可以看到变量“name”是一个String,而不是Long。仍然当我提交带有非数字值的表单时,它会抛出 org.postgresql.util.PSQLException: Bad value for type long : x

这是表格:

<form:form method="post" action="save.html" commandName="document" enctype="multipart/form-data">
    <form:errors path="*" cssClass="error"/>
    <table>
    <tr>
        <td><form:label path="name">Name</form:label></td>
        <td><form:input path="name" /></td> 
    </tr>

     <tr>
        <td><form:label path="content">Document</form:label></td>
        <td><input type="file" name="file" id="file"></input></td>
    </tr>
    <tr>
        <td colspan="2">
            <input type="submit" value="Add Document"/>
        </td>
    </tr>
</table>  
</form:form>

如果我输入一个数值并提交,OK。但是任何非数字值都会触发上述异常...我读到这可能是由于我没有正确使用 OID 引起的,但我不知道应该怎么做才能消除此异常。其实我也不明白 excpetion 的名字。它说“ long类型的价值不高”。但是谁想要长字呢?变量“名称”是字符串类型!!!!

最后,这是控制器

@RequestMapping(value = "/save", method = RequestMethod.POST)
public String save(@ModelAttribute("document") Document document, @RequestParam("file") MultipartFile file) {

    try {
        Blob blob = Hibernate.createBlob(file.getInputStream());
        document.setContent(blob);
        documentDao.save(document);
    } catch (Exception e) {
        e.printStackTrace();
    }


    return "redirect:/index.html";
}

任何建议都会被采纳。

4

5 回答 5

92

我有一个类似的问题,但它与数据库中 ID 字段的顺序无关。

经过一番搜索,我发现表明除非另有说明,否则 Hibernate 中的 Lobs 被视为 OID。

这意味着 Hibernate 将尝试将 Lob 放入 Long a 中,因此产生异常PSQLException: Bad value for type long

指定 Lob 被视为文本的方法是注释字段

@Lob
@Type(type = "org.hibernate.type.TextType")
于 2014-02-04T07:57:21.717 回答
10

当我创建表格时,“名称”列恰好是第一个。这不好。Id 必须是第一列。如果我更改列的顺序,它可以正常工作......

于 2012-09-29T19:52:44.447 回答
5

起初我试图设置

@Column(columnDefinition = "text")

而不是 @Lob 注释,正如这里已经提到的。它在 PostgreSQL 上对我有用,但出现错误 org.hibernate.tool.schema.spi.SchemaManagementException: Schema-validation: wrong column type 在表 [Question] 的列 [htmlText] 中遇到;找到 [clob (Types#CLOB)],但期待 [text (Types#VARCHAR)]

在我的单元测试中(在 HSQLDB 上)。

然后它尝试了

@Column(columnDefinition = "clob")

它在 PostgreSQL 和 HSQLDB 上都运行良好!

于 2018-07-26T14:02:51.220 回答
0

Postgres 和 Hibernate 存在问题。列text无法映射到字符串。您需要添加:@Type(type="org.hibernate.type.TextType")

例子 :

@Lob
@Type(type = "org.hibernate.type.TextType")
@Column
private String contentJson;

如果列包含二进制类型,请使用: @Type(type="org.hibernate.type.BinaryType")

基于页面的解决方案:https ://github.com/jhipster/generator-jhipster/issues/5995

于 2021-12-30T11:56:43.283 回答
-1

我遇到了微笑错误,原因是我在整数数据类型中包含除整数以外的一些字符

例如- ,111 和 144- 等

于 2015-07-14T23:41:04.593 回答