[jboss-user] [JBoss Seam] - Re: Beginner Question
fernando_jmt
do-not-reply at jboss.com
Tue Jun 12 12:18:35 EDT 2007
At first glance I can see one wrong thing, your entity component name is "LoginAccount", so if you want to biject it, you should declare it as follows:
| @In @Out
| public LoginAccount LoginAccount;
|
or
| @In(value="#{LoginAccount}") @Out(value="#{LoginAccount}")
| public LoginAccount LoginAccount;
|
BTW, check whether your interface has the correct methods corresponding to component it is implementing it.
HTH.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4053638#4053638
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4053638
More information about the jboss-user
mailing list