我想在我的应用程序中将休眠 3 更新到 4 和 spring 3 到 3.1 和 spring security 3 到 3.1,但是当我这样做时,具有使用数据库中以前版本生成的权限的用户不可用并且异常
java.io.InvalidClassException GrantedAuthorityImpl local class incompatible
当应用程序想要从数据库中获取用户权限时发生。这是实体用户的配置:
@ElementCollection(targetClass = GrantedAuthority.class, fetch=FetchType.EAGER)
@CollectionTable(name = "user_authorities", schema = "mydb", joinColumns = @javax.persistence.JoinColumn(name = "user_id"))
private Collection<GrantedAuthority> authorities;