[jboss-user] [JBoss Seam] - Re: In attribute requires value for component
thomas.heute@jboss.com
do-not-reply at jboss.com
Fri Aug 4 07:43:01 EDT 2006
You are trying to inject the seam component: "theUser" while your Seam component is called: "userInput"
either:
1) Change
private UserInput theUser;
to
private UserInput userInput
2) Change
@Name("userinput")
to
@Name("theUser")
3) Change
@In(create = true)
to
@In(value=userInput, create=true)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3963149#3963149
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3963149
More information about the jboss-user
mailing list