我想在主页上显示数据库中的数据列表,但是我收到以下错误
org.springframework.expression.spel.SpelEvaluationException:EL1004E:(pos 8):方法调用:方法listAnnonce()在sujet.projet.collocation.domain.Annonce上找不到
@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
}
public List<Annonce> liste();
public List<Annonce> liste() {
return annonceDao.findAll();
}
<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>
@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
}
有人可以帮助我或建议我一个解决方案吗?