Interface ResultStreamWriter


public interface ResultStreamWriter
StreamResultの場合に、 Commandから直接コンテンツを出力するロジックを記述したい場合、利用するインタフェース。 このインタフェースを実装したクラスをRequestContextにセット(セット時のキー名をアノテーションもしくはメタデータに定義)。
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    出力処理を記述。
  • Method Details

    • write

      void write(OutputStream out) throws IOException
      出力処理を記述。
      Parameters:
      out - クライアントへ直接出力するOutputStream
      Throws:
      IOException