[jboss-user] [JBoss Seam] - Re: request parameter gets ignored sometimes
codelion
do-not-reply at jboss.com
Sun Feb 4 11:28:26 EST 2007
Problem pinpointed better. Now, is that a feature or a bug?
The problem is after the second time in the same conversation coming in with
<param name="carId" value="#{carHome.id}" />
when having
@Factory("car")
| public Car initCar() {
| return getInstance();
| }
then when that second time coming in with a different id then carHome.instance
<h:outputText id="description" value="#{carHome.instance.description}" />
is correct for new (second) id car, but the factory made car
<h:outputText id="description" value="#{car.description}" />
still remains the same as for first time id.
Is that a feature or a bug?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4010898#4010898
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4010898
More information about the jboss-user
mailing list