The version of spring is 3.0.3.RELEASE just updated from 3.0.1.RELEASE - at first I thought it may have been the version change that caused it, but I switched back and it didn't seem to fix it.
Here is some excerpts from the spring-beans.xml file:
Code:
<context:spring-configured />
<context:annotation-config />
<aop:aspectj-autoproxy />
<context:component-scan base-package="com.metadatatechnology">
</context:component-scan>
<context:component-scan base-package="org.sdmx">
</context:component-scan>
<bean id="registryMetadataManager" class="com.metadatatechnology.sdmx.mtregistry.manager.impl.RegistryMetadataManagerImpl">
<property name="registryName" value="${registry.name}" />
</bean>
And here is the related class
Code:
public class RegistryMetadataManagerImpl implements RegistryMetadataManager {
@Autowired
private MaintainableDao maintainableDao;
....
}
Not much to go on but I can't really provide much more information at the moment, I'll have to do some more digging when I'm back in the office - but maybe/hopefully the above information will help.