org.springframework.expression.spel.SpelEvaluationException:EL1004E:(pos 8):方法调用

时间:2014-05-10 06:54:03

标签: spring spring-webflow spelevaluationexception

我想在主页上显示数据库中的数据列表,但是我收到以下错误

  

org.springframework.expression.spel.SpelEvaluationException:EL1004E:(pos 8):方法调用:方法listAnnonce()在sujet.projet.collocation.domain.Annonce上找不到

User.java

@Entity
@Table( name = "utilisateur" )
public class UserEntity extends BaseEntity {

    // attribut

    @OneToMany( mappedBy = "annonceUser" )
    private List<Annonce>     annonce;

    public List<Annonce> getAnnonce() {
        return annonce;
    }

    public void setAnnonce( List<Annonce> annonce ) {
        this.annonce = annonce;
    } //getter setter
}

Interface.java

public List<Annonce> liste();

InterfaceImpl.java

public List<Annonce> liste() {

    return annonceDao.findAll();
}

主flow.xml

 <var name="annonce" class="sujet.projet.collocation.domain.User"/>
 <view-state id="accueil" view="accueil.xhtml" model="annonce">
     <on-render>
         <evaluate expression="annonce.list()"/>
     </on-render>
     <transition on="toauthentification" to="authentification" />
 </view-state>

Annonce.java

@Entity 
@Table( name = "annonce" ) 
public class Annonce extends BaseEntity {

    //attribut

    @ManyToOne
    @JoinColumn( name = "annonceUser" )
    private User        annonceUser;

    public User getAnnonceUser() {
        return annonceUser;
    }

    public void setAnnonceUser( User annonceUser ) {
        this.annonceUser = annonceUser;
    }
    //getter&setter 
}

有人可以帮助我或建议我一个解决方案吗?

0 个答案:

没有答案