In Spring 2.5 the RefreshablePagedListHolder has been deprecated.
Why?
Will there be a replacement class?
Type: Posts; User: staal; Keyword(s):
In Spring 2.5 the RefreshablePagedListHolder has been deprecated.
Why?
Will there be a replacement class?
Unfortunately, an upgrade to Spring version 2.5.2 did not solve the problem.
- Modules used :
xt framework
- Spring version :
2.5.x
- JDK version :
java 6.0
I found a 4th way to remove the
<beans ... default-autowire-candidates="*Dao,*Service">
configuration. I replaced
<bean id="xyDaoTarget" class="Xy">
I use @Autowired without @Qualifier.
In the config file, i placed:
<context:annotation-config/>
and
Sorry, I am not allowed to post our configurations files in this forum.
Yes, we have got some circular dependencies, but before autowiring, this has not been a problem.
I have added the stacktrace as an attachment.
Unfortunately, the full stack trace and the config files (more than 1300 spring beans) are to large to be posted here.
The OutOfMemoryError occurrs in the first line of the...
In our application (Spring 2.5, 1300+ beans), I have introduced some @Autowired annotations to the property setter methods of some base classes (which are extended by hundrets of controller and dao...