自动装配注释在骆驼加工语句中被忽略

时间:2019-03-27 03:53:13

标签: apache-camel spring-camel

我需要在处理步骤中实现数据库连接和查询。 因此,我在bean属性中定义了数据源。 而且我尝试使用jdbctemplate。 但是结果是通过java.lang.NullPointException返回的。

骆驼是否会忽略流程声明中的自动装配注释? 如果还有其他解决方案,请告诉我。

谢谢。

CamelContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:camel="http://camel.apache.org/schema/spring"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
... 
http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean class="com.ktds.openmzn.common.bean.ProcFormat" id="procFormat"/>
<bean class="com.ktds.openmzn.common.bean.ProcessDistributor" id="splitChannel"/>
<bean class="org.springframework.jdbc.datasource.DriverManagerDataSource" id="dataSource">
    <property name="driverClassName" value="${spring.datasource.driver-class-name}"/>
    <property name="url" value="${spring.datasource.url}"/>
    <property name="username" value="${spring.datasource.username}"/>
    <property name="password" value="${spring.datasource.password}"/>
</bean>

<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
    <property name="dataSource" ref="dataSource" />
</bean>
<bean class="com.ktds.openmzn.common.bean.FilePathProcessor" id="filePathProcessor"/>
...
<camelContext id="camelContext-f611cb6c-d516-4346-9adc-5512d327a88d"
    trace="true" xmlns="http://camel.apache.org/schema/spring">
    <camel:route id="fixed_processor">
        <camel:from id="_from1" uri="timer:fromPollTimer?period=20000"/>
        <camel:process id="_sourceDirectory" ref="filePathProcessor"/>
...

FilePathProcessor.java

public class FilePathProcessor implements Processor {
...
    @Override
public void process(Exchange exchange) throws Exception {
         List<Map<String, Object>> rows = SetFilePath.getInstance().getPathList("aaaa");

SetFilePath.java

@ManagedResource
public class SetFilePath {
private static SetFilePath instance = null;
private String sourceDirectory;
private String targetDirectory;

@Autowired
private JdbcTemplate jdbcTemplate;

public static SetFilePath getInstance() {
    if(instance == null) {
        instance = new SetFilePath();
    }   

    return instance;
}

结果

Message History
---------------------------------------------------------------------------------------------------------------------------------------
RouteId              ProcessorId          Processor                                                                        
Elapsed (ms)
[fixed_processor   ] [fixed_processor   ] [timer://fromPollTimer?period=20000                                            ] [         0]
[fixed_processor   ] [_sourceDirectory  ] [ref:filePathProcessor                                                         ] [         0]

Stacktrace
---------------------------------------------------------------------------------------------------------------------------------------

java.lang.NullPointerException: null
at com.ktds.openmzn.common.bean.FilePathProcessor.process(FilePathProcessor.java:20) ~[classes/:na]
at org.apache.camel.processor.DelegateSyncProcessor.process(DelegateSyncProcessor.java:63) ~[camel-core-2.23.1.jar:2.23.1]

1 个答案:

答案 0 :(得分:0)

当然,它为null,因为您是通过新的构造函数自己创建实例的:

instance = new SetFilePath();

@Autowired来自spring框架,您实际上需要使用spring为您创建此bean。

执行此操作的方法有多种,例如在XML文件中创建<bean>,然后通过设置程序<property>在处理器上配置它。

您还可以让spring / camel创建bean实例而不是新的构造函数,但这需要一些Camel API来实现

public static SetFilePath getInstance(CamelContext camel)
  if (instance == null) {
    instance = camel.getInjector().newInstance(SetFilePath.class);
}   

然后将通过 injector 通过自动执行装配的spring框架创建bean实例。