1)@Local - in EJB 2 there were local and remote interfaces for entity and session beans , I guess you are right and in EJB 3 entity bean is alway local?!
2)I've a table of countries value-description :1-usa 2-canada 3-russia 4-englad ...
i've entity for this table called county which has a description and a value
properties and I would like to show this countries in a drop down list...
I am querying all the rows in this table (a list of the entity country)
now i've to go over this list and create new SelectItem from this list in order to show it in a drop down , right?
I would like this list to be already a list of SelectItem , why isn't that possible?
Thanks!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3964688#3964688
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3964688
Oh yeah...and I had to specify the absolute path to myentities.jar in the <jar-file> element because when I specify by relative path, it does weird things to it. For example, if I reference it thusly:
| <jar-file>../myentities.jar</jar-file>
|
I get an error saying it can't find "mysessions.jar/myentities.jar"
So, I then tried
| <jar-file>../../myentities.jar</jar-file>
|
And I got an error saying it can't find "mysessions.jar/yentities.jar" (note the missing 'm'). Weird...
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3964684#3964684
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3964684