So we are using struts and jboss with spring.
Our Action contains a PageBuilder, which contains a service, all wired in spring.
the action generates a report. on run 1, the values in the report were fine. One subsequent runs, the values are double the previous value.
This means that the values are persisting in the service between runs, and subsequent runs are adding new data to the old values.
So in our configuration, the pagebuilder and service bean defs were augmented with singleton=false, but the problem is still there....
Does the action need a singleton=false attribute?


Reply With Quote
