-
public interface HttpRender
HTTP输出引擎的基类
HttpRender主要是给HttpResponse.finish(Object obj)提供指定数据类型的输出策略。
HttpResponse.finish(Object obj)内置对如下数据类型进行了特殊处理: CompletionStage CharSequence/String byte[] File RetResult HttpResult HttpScope
如果对其他数据类型有特殊输出的需求,则需要自定义HttpRender。
详情见: https://redkale.org
- 作者:
- zhangjx
-
-
方法概要
所有方法 实例方法 抽象方法 默认方法 修饰符和类型 方法 说明 default void
destroy(HttpContext context, AnyValue config)
default void
init(HttpContext context, AnyValue config)
void
renderTo(HttpRequest request, HttpResponse response, Convert convert, HttpScope scope)
-
-
-
方法详细资料
-
init
default void init(HttpContext context, AnyValue config)
-
renderTo
void renderTo(HttpRequest request, HttpResponse response, Convert convert, HttpScope scope)
-
destroy
default void destroy(HttpContext context, AnyValue config)
-
-