我在一个带有弹簧骆驼上下文、一条路线和一个测试的小项目上使用 Fuse IDE (Eclipse)。我放了一个额外的 xml 来定义测试执行环境。
当我运行测试时,加载上下文 bean 信息的类型不匹配失败(当实例化 bean 上下文的 PropertyDescriptor 类时,setter 类型是 org.apache.camel.spring.SpringCamelContext,getter 类型是 org.apache.camel.model。模型骆驼上下文...
原来的异常是:“java.beans.IntrospectionException:读写方法之间的类型不匹配”
测试代码是这样的:
public class TestDBRoute extends CamelSpringTestSupport {
@DirtiesContext //reload context
@Test
public void testPoll() throws Exception {
//context.start();
System.out.println("comenzo");
Thread.sleep(1000);
System.out.println("termino");
//context.stop();
assertEquals("first", 1, 1);
}
@Override
protected AbstractApplicationContext createApplicationContext() {
return new ClassPathXmlApplicationContext("classpath:/com/test-camel-context.xml");
}
}
骆驼上下文代码是:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<camelContext xmlns="http://camel.apache.org/schema/spring">
<packageScan>
<package>com.test.fuse.routes</package>
</packageScan>
</camelContext>
</beans>
路由代码为空,它只扩展了 RouteBuilder 并覆盖了 configure 方法。
我在 ubuntu 上使用 OpenJDK 1.6.0_24。
如果您需要其他东西,请询问。
谢谢