2017-04-19 49 views

回答

0

在管理API,XML文件 - configuration-context.xml具有以下其中正在使用該屬性文件輪詢,

<file:inbound-channel-adapter directory="${batch.job.configuration.file.dir}" channel="job-configuration-files" 
     filename-pattern=".*\.xml"> 
     <poller max-messages-per-poll="1" cron="5/1 * * * * *" /> 
    </file:inbound-channel-adapter> 

該物業在API的默認值是 - batch.job.configuration.file.dir=target/config所以屬性默認定義,你可能有應用程序整體引導中的一些其他問題。

我已經在Weblogic中部署了我的Spring Admin,並且代碼已經在base_domain目錄下自動創建了這個目錄。

屬性是強制性的,我想,你還必須確保應用程序用戶有權創建該目錄(如果該目錄尚不存在)。

我還沒有使用這個屬性,但猜測這部分在屏幕Files部分被用作如下圖所示,

enter image description here

解釋有關文件選項卡是上面here

我的截屏從Spring批處理的角度版本。

+0

感謝您的查詢 –