作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 apache Camel File 来将文件从文件系统读取到 bean 方法中。我将它与 spring xml 一起使用。我需要重写路由进程上 GenericFileProcessStrategy 类中的prepareOnStartup 方法。你能告诉我在 spring xml 文件中的 from uri 路由行中执行此操作的语法是什么吗?
spring xml:
<bean id="adoFilter" class="calypsox.bllInterfaces.cashMgn.cashMgnAdo.AdoFileFilter"/>
<camelContext xmlns="http://camel.apache.org/schema/spring" id="cashMgn">
<propertyPlaceholder id="cashMgnProperty"
location="${bll.resources.env}/cashMgn.properties" />
<route id="cashMgnAdo">
<from uri="file:{{cashMgnAdoFileDir}}?filter=#adoFilter;move=.org/${date:now:yyyyMMdd}/${file:name}&readLock=changed&readLockCheckInterval=2000&readLockTimeout=10000&moveFailed=.failed" />
<convertBodyTo type="java.lang.String" />
<to uri="bean:cashMgnHandler?method=handleCashMgnAdo" />
</route>
</camelContext>
最佳答案
可以使用processStrategy
属性设置GenericFileProcessStrategy
:
<bean id="myProcessStrategy" class="..."/>
..
<from uri="file:..?..processStrategy=#myProcessStrategy"/>
关于java - 重写 GenericFileProcessStrategy 类中的prepareOnStartup方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36240471/
我是一名优秀的程序员,十分优秀!