org.hibernate.type.SerializationException:无法反序列化AtomicLong字段

时间:2016-01-01 12:07:39

标签: java mysql hibernate

我班上有一个AtomicLong字段

@Entity
@Table(name = "movie")
public class Movie implements Serializable{    
@Column(name = "movie_following_count")
private AtomicLong moviefollowingCount;

mysql表中的对应字段是BIGINT(20)

如果字段moviefollowingCount为Long,则效果很好。但是一旦我将其更改为AtomicLong,它就会抛出一个SerializationException:无法反序列化。

我该如何解决这个问题?任何帮助将不胜感激。

0 个答案:

没有答案