2
我找的例子有註解的類,完全XML免費的這樣:JDBC Spring集成與註解
<int-jdbc:inbound-channel-adapter query="select * from item where status=2"
channel="target" data-source="dataSource"
update="update item set status=10 where id in (:id)" />
OR
<int-jdbc:inbound-channel-adapter query="..."
channel="target" data-source="dataSource" update="...">
<int:poller fixed-rate="1000">
<int:transactional/>
</int:poller>
</int-jdbc:inbound-channel-adapter>
也許存在一個更好的解決方案,如輸入消息網關通過使用CRON語句查詢數據庫來創建入口點。 克朗編程查詢 - >第一通道
它的工作原理!非常感謝。在這一刻,我想了解poller.setAdviceChain(Collections.singletonList(interceptor))的含義。我收到一個錯誤,因爲它期待着一個不同的類型: PollerMetadata類型中的setAdviceChain(List)方法不適用於參數(List ) –
crm86
2014-12-02 15:04:02
試試這個'poller.setAdviceChain(Collections。 singletonList攔截器));' - 方法的預期泛型。 –
2014-12-02 15:07:10
@Artem Bilan:如何獲得您在第二個片段中提到的'transactionManager'?謝謝。 – 2018-03-10 01:16:47