- 
                Notifications
    You must be signed in to change notification settings 
- Fork 38.8k
Closed
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)type: bugA general bugA general bug
Milestone
Description
Franz Neumann opened SPR-10374 and commented
After update on Spring 3.2.2 following controllers aren't initialized:
 
<bean id="mainPageController" class="com.euroit.militaryshop.web.controller.MainPageController" 
		parent="baseTrolleyAwareController">
	<property name="productService" ref="productService"/>
	<property name="categoryService" ref="categoryService"/>
</bean>	
<bean id="baseTrolleyAwareController" class="com.euroit.militaryshop.web.controller.base.BaseTrolleyAwareController">
	<property name="trolley" ref="trolley"/>
</bean>The class MainPageController:
@RequestMapping("/")
public class MainPageController extends BaseTrolleyAwareController {
..
}So after ininilazation there is no "/" mapping. With Spring 3.2.1 it worked.
Affects: 3.2.2
Issue Links:
- AbstractAutowireCapableBeanFactory.predictBeanType returns parent type instead of class="<real class>" value [SPR-10507] #15139 AbstractAutowireCapableBeanFactory.predictBeanType returns parent type instead of class="" value ("is duplicated by")
- Introduce a pre-resolved target type in RootBeanDefinition [SPR-10335] #14969 Introduce a pre-resolved target type in RootBeanDefinition
Metadata
Metadata
Assignees
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)type: bugA general bugA general bug