javax.persistence.PersistenceException: org.hibernate.type.SerializationException: could not deserialize

前端 未结 6 1289
Happy的楠姐
Happy的楠姐 2021-02-19 04:32

When executing a Criteria Query in hibernate, I get the following exception:

javax.persistence.PersistenceException: javax.persistence.PersistenceException: org.         


        
相关标签:
6条回答
  • 2021-02-19 05:01

    In my case it was a problem with java.time.LocalDateTime from Java 8.

    Fix with adding dependency:

    <dependency>
    	<groupId>org.hibernate</groupId>
    	<artifactId>hibernate-java8</artifactId>
    </dependency>		

    0 讨论(0)
  • 2021-02-19 05:04

    The problem was that a referenced entity had another reference to an entity and the relationship was NOT annotated by any of the @OneToMany-like annotations.

    0 讨论(0)
  • 2021-02-19 05:04

    In my case it was a problem with java.time.LocalDate from Java 8, and I forgot to assign a converter to that specific attribute.

    It seems that the newer Versions (5.2.1Final) has a built in converter, so that can help if your are not bound to a specific version.

    But checking the Annotations is definitely the way to go, but I would check them all.

    0 讨论(0)
  • 2021-02-19 05:08

    This exception may occur when hibernate obtains data of unexpected type from database query result. For example hibernate expects number but gets string instead.

    In such case look for StreamCorruptedException: "invalid stream header": 74657374 exception in stacktrace. The number is hint for you, but you may want to convert it to text with ascii table. 74657374 gives test as string. Which was value of similarly named table column, but with completely different type. So hibernate was querying wrong column which happened to exist just by chance, so the first exception raised was not column does not exist but could not deserialize instead. Hibernate was expecting long but got String instead.

    I got in this mess because correct @Column(name="id_user") was ignored and hibernate infered wrong column name user from field name which wasn't idUser but just user with getUser() getter. The annotation was ignored because it was specified on property getter instead of the field, which was expected by hibernate because the entity superclass annotated ID field with @Id, instead of the ID getter, which is what I groundlessly expected.

    0 讨论(0)
  • 2021-02-19 05:09

    I had the same problem. It was due to an enum in a @SqlResultSetMapping. The solution is here: @ConstructorResult with Enum in JPA 2.1

    Edit, due to a comment from @Eugene Mihaylin:
    So, I had the following situation:

        @SqlResultSetMapping(
        name = "MyTargetClassMappingName",
        classes = {
                @ConstructorResult(
                        targetClass = MyTargetClassDTO.class,
                        columns = {
                                @ColumnResult(name = "name_from_query1"),
                                @ColumnResult(name = "name_from_query2"),
                                ...
                                @ColumnResult(name = "name_of_problematic_column", type = MyCustomEnum.class),
                        }
                )
        })
        @Entity
        public class MyTargetClassDTO ...
    

    And I needed to change to:

        @SqlResultSetMapping(
        name = "MyTargetClassMappingName",
        classes = {
                @ConstructorResult(
                        targetClass = MyTargetClassDTO.class,
                        columns = {
                                @ColumnResult(name = "name_from_query1"),
                                @ColumnResult(name = "name_from_query2"),
                                ...
                                @ColumnResult(name = "name_of_problematic_column", type = String.class),
                        }
                )
        })
        @Entity
        public class MyTargetClassDTO ...
    

    in order to fix the issue.

    Later, in the constructor of the DTO (annotated as @Entity), I am doing: MyCustomEnum.valueOf(...) in order to parse the value of the string and assign it to the specified field of type MyCustomEnum in the DTO.

    0 讨论(0)
  • 2021-02-19 05:20

    I have my entity class UploadFiles having two fields as fid & fname where fid being primary key. I have my query in dao as

    StringBuilder queryString = new StringBuilder("from UploadFiles f where f.fid=1");
    
    Query query = (Query) session.createQuery(queryString.toString());          
    return query.list();
    

    when it execute query.list(),it gives serialization exception

    0 讨论(0)
提交回复
热议问题