Я пытаюсь сохранить документ в формате pdf в моей базе данных postgres 10.1, используя Hibernate.Ниже приведен мой класс сущностей.
@Entity
@Table(name = "FILEUPLOADS", schema="SomeSchema")
public class FileUploads{
//skipping other columns
@Lob
@Column(name="DOCDATA")
private byte[] docData;
}
Этот столбец имеет тип операции bytea в базе данных postgres.
В соответствии с предложением Authur здесь: аналогичная проблема , я создал свою собственную реализацию диалекта postgres, как показано ниже.
@Configuration
public class TestDialect extends PostgreSQLDialect{
public TestDialect() {
super();
registerColumnType(Types.BLOB, "bytea");
}
}
Затем внутри моего файла persistence.xml я использую этот пользовательский диалект
<property name="hibernate.dialect" value="com.digital.repository.TestDialect" />
Даже после выполнения всехэто, я получаю ниже ошибка
ERROR: column "DOCDATA" is of type bytea but expression is of type bigint
Hint: You will need to rewrite or cast the expression.
Position: 251
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2468)
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2211)
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:309)
at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:446)
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:370)
at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:149)
at org.postgresql.jdbc.PgPreparedStatement.executeUpdate(PgPreparedStatement.java:124)
at org.apache.tomcat.dbcp.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:105)
at org.apache.tomcat.dbcp.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:105)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.hibernate.engine.jdbc.internal.proxy.AbstractStatementProxyHandler.continueInvocation(AbstractStatementProxyHandler.java:122)
... 250 more
Что еще мне нужно сделать, чтобы решить эту проблему?