0
私はSpringブート4.2を使用しています。私はStreamingBodyResponse(コンソール出力)を返すサービスを持っています。私はこの出力をビューに表示したい(できればタイメリーフですが、何でも問題ありません)。今はブラウザを開いてストリームします。私がしたいのは、タイムリーフビューのテキストエリアにストリーミングレスポンスを表示し、また、このビューを閉じても、サーバー側でストリーミングを停止しクラッシュさせることには影響しません。もし誰かが私を正しい方向に向けることができれば素晴らしいだろう。タイムリーフを使用しているクライアントでStreamingBodyResponseを処理する
@PostMapping(value="/environment",produces =MediaType.TEXT_PLAIN)
public StreamingResponseBody environmentSubmit(@ModelAttribute Environment environment) {
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
String currentUserName = authentication.getName();
Configuration configuration = Configuration.createFromPostParams(
environment.getDriver(),
environment.getVersion(),
currentUserName);
StreamingResponseBody response =executor.execute(configuration);
return response;