私は問題があります。apache camel のドキュメントには、camel-restlet コンポーネント (バージョン 2.10 以降) では、リクエストを処理するスレッドの最大数を定義できると記載されています (http://camel.apache.org/restlet.html)。
このパラメータを指定するにはどうすればよいですか? これが私が作ったルートです
from(
"restlet:http://localhost:" + config.getEmergencyRESTPort()
+ "?restletMethods=post,get&restletUriPatterns=#emergencyUriTemplates&maxThreads=64").process(
new EmergencyServerProcessor(config, emergencyService));
URL で maxThreads パラメータを使用しましたが、機能しません。
エラーは何ですか?