org.springframework.orm.hibernate3.HibernateSystemException: произошла исключительная ситуация IllegalArgumentException, вызывающая метод получения - PullRequest
0 голосов
/ 14 октября 2011

я сталкиваюсь с проблемой, показанной ниже

IllegalArgumentException occurred calling getter of org.springframework.security.oauth.examples.sparklr.models.Authority.user; 
nested exception is org.hibernate.PropertyAccessException: 
IllegalArgumentException occurred calling getter of org.springframework.security.oauth.examples.sparklr.models.Authority.user

мои hibernate-зависимости:

  • hibernate-core 3.3.2.GA
  • hibernate-annotations 3.4.0.GA
  • hibernate-commons-annotations 3.3.0.ga
  • hibernate-entitymanager 3.4.0.GA
public class User implements UserDetails,Serializable {

    /** Serial Version UID. */
    private static final long serialVersionUID = -558892839L;

    /** Use a WeakHashMap so entries will be garbage collected once all entities 
        referring to a saved hash are garbage collected themselves. */
    private static final Map<Serializable, String> SAVED_HASHES =
        Collections.synchronizedMap(new WeakHashMap<Serializable, String>());

    /** hashCode temporary storage. */
    private volatile String hashCode;


    /** Field mapping. */
    private Boolean accountnonexpired;
    /** Field mapping. */
    private Boolean accountnonlocked;
    /** Field mapping. */
    private List<Authority> authorities = new ArrayList<Authority>();

    /** Field mapping. */
    private Boolean credentialsnonexpired;
    /** Field mapping. */
    private Boolean enabled;
    /** Field mapping. */
    private String id;
    /** Field mapping. */
    private String password;


       public class Authority implements Serializable ,GrantedAuthority {


    /** Serial Version UID. */
    private static final long serialVersionUID = -558892840L;

    /** Use a WeakHashMap so entries will be garbage collected once all entities 
        referring to a saved hash are garbage collected themselves. */
    private static final Map<Serializable, Serializable> SAVED_HASHES =
        Collections.synchronizedMap(new WeakHashMap<Serializable, Serializable>());

    /** hashCode temporary storage. */
    private volatile Serializable hashCode;


    /** Field mapping. */
    private String authority;
    /** Field mapping. */
    private User user;

как я могу решитьбольшое спасибо

1 Ответ

0 голосов
/ 14 октября 2011

из кода, который вы показали, у вас нет геттера для свойства user Authority.

Попробуйте добавить

public User getUser(){
    return this.user;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...