I have a spring bean that I get like this within a method-
repAppCaller = CensusFileSpringUtils.getBean(CensusFileWfConstants.Spring.Bean.REP_CALLER);
but this bean has a property that is set just 1 time and not for every request?
Thanks.
|
|
|
Maybe I do not understand your question, try to clarify it, but I think you have to use prototype scope for creating new instance per call, by default in spring installed singleton scope. |
|||
|
|
|
I suppose the instance of If so, you can use |
|||
|
|