Piotr Klimczak created ARIES-2045:
-------------------------------------
Summary: Blueprint Spring not able to resolve bean by type
Key: ARIES-2045
URL: https://issues.apache.org/jira/browse/ARIES-2045
Project: Aries
Issue Type: Bug
Components: Blueprint
Affects Versions: blueprint-spring-1.0.0
Reporter: Piotr Klimczak
Fix For: blueprint-spring-1.0.0
Blueprint Spring not able to resolve bean by type
The problem is in: BlueprintBeanFactory.SpringMetadata in method:
{code:java}
public String getClassName() {
return null;
} {code}
Simple fix is to do:
{code:java}
public String getClassName() {
return getBeanDefinition(beanName).getBeanClassName();
} {code}
This solves my problem with trying to get Camel 3 working with spring camel
context and resolve BridgePropertyPlaceholderConfigurer correctly.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)