I want to outject an ArryList so I have this in my ejb
| @DataModel
| private List ents=new ArrayList();
|
and this code in my jsf page
|
|
|
| #{report.id}
|
|
|
and it's working..But myEntity has an ArrayList component inside it which is
mapped as OneToMany
I'm trying to use web services and it's working but when I try to use hibernate
in server side i get no entity found exception..here is my server side bean
|
| @Stateless
|
| @Local( {
|
| LoginService.class
|
| })
|
| @Remote( {
|
| LoginService.class
|