cost 224 ms
Spring-Integration:錯誤通道:如何在工作流中使用多個錯誤通道聲明?

[英]Spring-Integration: error-channel: how to use multiple error-channel declarations in a workflow?

我試圖找出在 Spring-Integration 工作流中處理異常的一般策略。 我在int-http:inbound-gateway上使用error-channel屬性,這對我在工作流程中遇到的錯誤非常有效。<int-http:inbound-gateway ... ...

Spring-Integration:日志記錄:從 AbstractRequestHandlerAdvice 中獲取 bean 名稱

[英]Spring-Integration: Logging: Getting the bean name from within a AbstractRequestHandlerAdvice

在Spring-Integration 6.0.0中,我使用AbstractRequestHandlerAdvice隱式記錄對http:outbound-gateway調用(傳出請求消息標頭和有效負載以及傳入響應消息標頭和有效負載)。 但是我有點堅持從AbstractRequestHandlerAd ...

JDBi 聲明式樣式 - class 未找到

[英]JDBi Declarative style - class not found

我正在嘗試使用 JDBI 的聲明式樣式從表中獲取數據。 它因 NoClassDefFoundError 而失敗。 當我嘗試在 JDBI 中使用 Fluet 風格時,它工作正常。 POM.xml 注冊了 SqlObject 插件 DOA 服務 錯誤 我不確定我錯過了什么。 關於如何繼續調試此問題的 ...

抽象和聲明式編程有什么區別?

[英]What is the difference between abstraction and declarative programming?

聲明式編程似乎可以通過抽象來實現。 那么抽象和聲明式編程有什么區別呢? [ 我的想法 ] 我將使用 class 的人稱為“服務器”,將使用 class 的人稱為“客戶端”。 我認為聲明式編程或命令式編程不是由“服務器”決定的。 這取決於“客戶”如何使用它。 “客戶”可以聲明式和命令式地構造抽象 ...

SpringIntegration 和 Reactive:試圖理解約束

[英]SpringIntegration and Reactive: Trying to understand the constraints

我們有一個帶有 HTTP 入站調用和出站調用的 SpringIntegration 工作流。 工作流主要用通道、鏈、拆分器和聚合器的 XML 聲明來表示。 在Servlet realm 中,我們使用http:inbound-gateway和http:outbound-gateway組件作為內部工作流 ...

Feign 接口是否應該具有帶有指定名稱的@PathVariable 和@RequestParam 注釋才能工作?

[英]Should Feign interface has @PathVariable and @RequestParam annotations with stated names to work?

在新的 openfeign 庫(版本 3.1.3)中有一個檢查PathVariableParameterProcessor ,驗證帶有@PathVariable注釋的 arguments 應該填充名稱屬性。 RequestParamParameterProcessor 中存在類似的檢查。 在op ...

Spring-Integration:如何使用 webflux 檢查 AbstractRequestHandlerAdvice 中的 http 響應?

[英]Spring-Integration: how to inspect a http response within an AbstractRequestHandlerAdvice with webflux?

這個問題直接涉及另一個問題: Spring-Integration AbstractRequestHandlerAdvice with webflux/reactive: does this introduce a synchronous process? 從建議處理程序調用http:outbou ...

spring-integration jdbc 用於處理空結果集的出站網關建議

[英]spring-integration jdbc outbound-gateway advice for handling empty result-sets

我正在接受@gary-russel 的建議並提出一個新問題 w.r.t 這個老問題( 使用 jdbc 時出現問題:當查詢返回空結果集時出站網關)關於 spring-integration JDBC outbound-gateway calls on requests that return一個空的結 ...

Spring-Integration:使用鏈內部的接收者列表路由器來實現迭代但出現路由錯誤

[英]Spring-Integration: Using a recipient-list-router from inside of a chain to achieve iteration but getting a routing error

從 spring-integration 鏈A我正在調用鏈B ,它可能會“循環”自身,直到滿足所有信息恢復(因為第一次調用可能會檢索本身需要由后續調用解決的信息)。 鏈A通過網關調用調用鏈B ,因此期望返回消息:<int:chain input-channel="A_channel" /&gt ...

在使用 spring-integration 聲明定義的 API 中,如何獲取異常消息的上下文信息?

[英]Within an API defined with spring-integration declarative, how to get context information for exception messages?

我們正在使用 Spring-Integration 來實現 API,這些 API 本身調用了幾個不同的 API。 萬一出現異常,我們在errorChannel上有一個處理器,它內省ErrorMessage中包含的信息,提供大量細節。 我正在尋找使用有關異常時正在執行的當前處理器的信息來擴充Erro ...

使用什么消息處理程序來修改在 singleton bean 中維護的“靜態數據”?

[英]What message handler to use for modifying "static data" maintained within a singleton bean?

我正在使用 singleton bean 來保存在 API 啟動時評估的某些“靜態數據”,並且可能會不時更新。 在上下文中,我最初將 bean 設置為 map:<util:map id="staticData" key-type="java.lang.String" > &lt ...

如何實現動態 SwiftUI 視圖層次結構?

[英]How to Implement Dynamic SwiftUI View Hierarchy?

我正在嘗試使用 SwiftUI 實現 markdown 渲染器。 Markdown 文檔包含各種塊,其中一個塊可能嵌入到另一個塊中,例如塊引用: 報價 1 級報價級別 2 報價等級 3 ... 整個文檔 forms 是一個任意深度的樹狀結構,需要渲染器采用遞歸的方式。 我采用了以下代碼結構:@ ...

發出 BehaviorSubject 值時如何在 switchMap 中觸發 http 調用

[英]How to trigger http call inside switchMap when BehaviorSubject value is emitted

我正在學習以聲明方式編寫角度應用程序,但我不確定調用 POST 請求時最好的方法是什么。 我有一個帶有電子郵件和密碼表單的登錄表單,當用戶輸入並單擊提交時,將調用 subject.next() 在我的 user.service 類中,我實現了以下功能: 然后用戶點擊提交什么都不會發生,fo ...

我應該使用什么 RxJS 操作從 observable 獲取數據並將其推送到數組?

[英]What RxJS operation should I use in getting data from an observable and pushing it to an array?

我正在嘗試模擬支持分頁的 http 請求。 目前,此請求僅返回一個數字。 get請求的一個參數是數據庫中使用的頁碼。 為簡單起見,請考慮返回一個可觀察對象的函數 getData,該可觀察對象返回頁碼。 在我的 ngOnInit 中,我聲明: 我還試圖通過避免 subscribe() 方法 ...

使用 Streams 模擬嵌套的 for 循環過濾

[英]Simulating nested for-loop filtering using Streams

我正在做一個與口袋妖怪有關的項目。 我有一個PokemonRecord記錄,其中有 2 個PokemonTypes的 2 個參數。 PokemonRecord的任何實例都可以有 1 或 2 種類型。 如果PokemonRecord只有 1 種類型,則type2 == null 。 以下方法的目的 ...

MiniZinc 基本問題。 n 個工人和 n 個任務

[英]MiniZinc basic problem. n Workers and n Tasks

我是第一次學習 Minizinc,有點卡在一個非常基本的問題上。 它涉及n個工人和n個任務。 我得到一個二維利潤矩陣,其中profit[w,t]將給出工人w和任務t的利潤。 分配問題的目標是最大化利潤。 我嘗試了以下方法: 但這不起作用,因為最大化 function 不是那樣設置的,但是我不知道還能 ...

sqlalchemy: AttributeError: type object 'customer' 沒有屬性 'invoices'

[英]sqlalchemy: AttributeError: type object 'customer' has no attribute 'invoices'

我是 sqlalchemy 的新手。我可以通過聲明式映射創建數據庫表,如下所示: 這可以。 我在customer表和invoice表中都添加了一些數據。 到目前為止,一切都很好。 接下來,我將像這樣在現有數據庫上試用automap_base : 當我運行代碼時,我得到: AttributeErro ...


 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM