我正在使用入站通道适配器poling目录。但是,它一直在无限次地poling同一个文件,而不创建消息负载。
<int-file:inbound-channel-adapter id="pollDataFile"
directory="file:////D:/Directory1"
channel="inboundFileChannel" auto-startup="true" filter="compositeFilter">
<int:poller default="true" fixed-rate="5000" time-unit="MILLISECONDS"/>
</int-file:inbound-channel-adapter>
<int:service-activator id="moveFileToInProgress" ref="handler" input-channel="inboundFileChannel" output-channel="filesInProcess" />
<bean id="handler" class="com.spring.batch.util.FileCopyService"/>
<int-file:outbound-channel-adapter
id="filesCopyToInProcess" channel="filesInProcess"
directory="file:////D:/InProgress"
auto-create-directory="false" delete-source-files="true">
</int-file:outbound-channel-adapter>
<int-file:inbound-channel-adapter id="pollDataFileInProgress"
directory="file:////D:/InProgress" prevent-duplicates="true"
channel="filesInProcessToProcess" filter="compositeFilter">
<int:poller default="true" fixed-rate="10000" time-unit="MILLISECONDS"/>
</int-file:inbound-channel-adapter>
<int:transformer id="prepareJobLaunchRequest"
input-channel="filesInProcessToProcess" output-channel="outboundJobRequestChannel">
<bean class="com.spring.batch.util.FileMessageToJobRequest">
<property name="job" ref="fileUploadJob" />
<property name="fileParameterName" value="input.file.name" />
<property name="beanReader" value="bean.reader" />
<property name="beanWriter" value="bean.writer" />
<property name="beanProcessor" value="bean.processor" />
</bean>
</int:transformer>
<bean id="compositeFilter"
class="org.springframework.integration.file.filters.AcceptAllFileListFilter" />
prevent-duplicates=“true”
添加acceptonceFilelistFilter
,这样就有了冲突的筛选器(全部接受和一次接受);不会处理重复的文件名。
设置prevent-duplicates=“false”
。
我正在尝试使用亚马逊SNS控制台中的发布endpoint将推送通知(PN)从我的应用服务器发送到android设备,该消息和消息结构为json,工作正常。 但是,当我试图实现相同的Java它的设备没有收到通知。 控制台上的响应 发布列表请求:{ target arn:arn:AWS:SNS:AP-south-1:818862955266:endpoint/GCM/Test app/a1ec 811
安装失败,消息为无效文件:K:\project\app\build\中间产品\spit-apk\with_ImageProcessor\debug\slices\slice_0.apk.解决此问题的方法可能是卸载现有版本的apk(如果存在),然后重新安装。 警告:卸载将删除应用程序数据! 是否要卸载现有应用程序? 我运行我的项目在Android Studio2.3 beta 3.
我可以在Mule Esb中看到两个不同的对象-消息和有效负载。但我无法理解两者的实际特征。有人能帮我理解一下吗?。
需求:构建一个基于。NET的应用程序,该应用程序可以定期从IBM Websphere消息队列读取消息,并将这些消息保存到数据库中
我有一个android应用程序,我试图使用库调用. net Web服务,但我有一个问题,当我运行我的项目时,我得到这样的错误: soapFault-faultcode:'a: InternalServiceFault'faultstring:'反序列化操作'yemeksorgusu'的请求消息体时出错。操作格式遇到无效的消息体。希望找到名称为'yemeksorgusu'和命名空间'mozaikke
有没有办法在Kafka消息有效载荷中添加时间戳标头?我想检查消息是何时在消费者端创建的,并基于此应用自定义逻辑。 编辑: 我试图找到一种方法,将一些自定义值(基本上是时间戳)附加到生产者发布的消息上,这样我就可以在特定的时间段内消费消息。现在Kafka只确保消息将按照它们被放入队列的顺序传递。但是在我的例子中,先前生成的记录可能在某个延迟之后到达(因此在时间T1生成的消息可能比在稍后时间T2生成的