如何自定义aws s3 inbound-channel-adapter的启动/停止。我想先设置auto-startup =“ false”,然后在服务器启动时手动启动。寻找一种类似于我们为文件入站通道适配器提供以下解决方案的解决方案。
inboundFileAdapterChannel.send(new GenericMessage(“ @'s3FilesChannelId.adapter'.start()”));
配置:
如果我对s3入站适配器通道尝试相同的方法。我收到以下错误
申请无法开始
说明:
一个组件需要一个名为's3FilesChannelId.adapter'的bean,但找不到。
操作:
考虑在您的配置中定义一个名为“ s3FilesChannelId.adapter”的bean。
答案 0 :(得分:0)
假设我们有一个像这样的通道适配器:
<int-aws:s3-inbound-channel-adapter id="s3Inbound"
channel="s3Channel"
session-factory="s3SessionFactory"
auto-create-local-directory="true"
auto-startup="false"
delete-remote-files="true"
preserve-timestamp="true"
filename-pattern="*.txt"
local-directory="."
remote-file-separator="\"
local-filename-generator-expression="#this.toUpperCase() + '.a' + @fooString"
comparator="comparator"
temporary-file-suffix=".foo"
local-filter="acceptAllFilter"
remote-directory-expression="'foo/bar'">
<int:poller fixed-rate="1000"/>
</int-aws:s3-inbound-channel-adapter>
请注意auto-startup="false"
和id="s3Inbound"
。
因此,它不会在应用程序上下文初始化后自动启动。
但是,使用该s3Inbound
id可以在方便的时候手动进行。
虽然您不清楚关于inboundFileAdapterChannel
的故事,但是您仍然可以为上述通道适配器注入Lifecycle
并执行其start()
:
@Autowired
@Qualifier("s3Inbound")
private Lifecycle s3Inbound;
...
this.s3Inbound.start();
有关inboundFileAdapterChannel
的代码片段似乎是对Control Bus
方法的引用,但这已经有些不同了:https://docs.spring.io/spring-integration/docs/current/reference/html/system-management-chapter.html#control-bus