0
ご協力ありがとう
私のプロジェクトでSpring Integration
を使用していますが、自動起動、リモートディレクトリなどの設定をデータベースから読み込みたいのですが、どうしたらいいですか?以下のように
私のコード:春の統合でデータベースから構成アダプタを読み取る方法は?
<int-ftp:inbound-channel-adapter id="my-inbound-channel-adapter"
channel="ready-to-process-inbound-tmp-mover"
session-factory="ftp-Session"
auto-create-local-directory="..... read from db......"
delete-remote-files="..... read from db......"
auto-startup="..... read from db......"
filename-regex="..... read from db......"
remote-directory="..... read from db......"
remote-file-separator="/"
local-filename-generator-expression="...stuff code..."
temporary-file-suffix=".writing"
local-directory="..... read from db......">
<int:poller fixed-rate="..... read from db......" error-channel="errorChannel"/>
</int-ftp:inbound-channel-adapter>
高速応答のための@Garyに感謝します。実行時にこの設定を更新する方法はありますか? –