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」が Long ではなく String であることがわかります。それでも、数値ではない値でフォームを送信すると、スローされます 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を適切に使用していないことが原因である可能性があることを読みましたが、この例外を排除するために何をすべきかわかりません。実際、例外の名前もわかりません。「タイプ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";
}
どんなアドバイスも歓迎します。