pchapman
Jun 29th, 2006, 03:01 PM
I get the following error when trying to initialize my context:
java.lang.IllegalStateException: Unable to locate bridged method for bridge method 'public volatile com.alliancemanaged.simis.domain.CompanyRole com.alliancemanaged.simis.hibernate.CompanyRoleDao Impl.load(long)'
at org.springframework.core.BridgeMethodResolver.find BridgedMethod(BridgeMethodResolver.java:81)
at org.springframework.core.annotation.AnnotationUtil s.getAnnotations(AnnotationUtils.java:41)
The declaration for CompanyRoleService is here:
<bean id="companyRoleService" class="com.alliancemanaged.simis.service.impl.CompanyRole ServiceImpl">
<property name="companyRoleDao" ref="companyRoleDao"/>
<property name="companyRoleGateway" ref="companyRoleGateway"/>
</bean>
The method in question (load(long)) is in the superclass of CompanyRoleServiceImpl.
I have no idea what this error message means. If you can help point me in the right direction, I would be greatful.
Thanks,
java.lang.IllegalStateException: Unable to locate bridged method for bridge method 'public volatile com.alliancemanaged.simis.domain.CompanyRole com.alliancemanaged.simis.hibernate.CompanyRoleDao Impl.load(long)'
at org.springframework.core.BridgeMethodResolver.find BridgedMethod(BridgeMethodResolver.java:81)
at org.springframework.core.annotation.AnnotationUtil s.getAnnotations(AnnotationUtils.java:41)
The declaration for CompanyRoleService is here:
<bean id="companyRoleService" class="com.alliancemanaged.simis.service.impl.CompanyRole ServiceImpl">
<property name="companyRoleDao" ref="companyRoleDao"/>
<property name="companyRoleGateway" ref="companyRoleGateway"/>
</bean>
The method in question (load(long)) is in the superclass of CompanyRoleServiceImpl.
I have no idea what this error message means. If you can help point me in the right direction, I would be greatful.
Thanks,