返回介绍

Spring 系列

MyBatis

Netty

Dubbo

Tomcat

Redis

Nacos

Sentinel

RocketMQ

番外篇(JDK 1.8)

学习心得

Spring AnnotationFormatterFactory

发布于 2024-05-19 21:34:34 字数 1779 浏览 0 评论 0 收藏 0

Spring AnnotationFormatterFactory

  • 类全路径: org.springframework.format.AnnotationFormatterFactory

public interface AnnotationFormatterFactory<A extends Annotation> {

    /**
     * The types of fields that may be annotated with the <A> annotation.
     * 字段类型
     */
    Set<Class<?>> getFieldTypes();

    /**
     * Get the Printer to print the value of a field of {@code fieldType} annotated with
     * {@code annotation}.
     * <p>If the type T the printer accepts is not assignable to {@code fieldType}, a
     * coercion from {@code fieldType} to T will be attempted before the Printer is invoked.
     * 通过注解和字段类型获取输出接口
     * @param annotation the annotation instance
     * @param fieldType the type of field that was annotated
     * @return the printer
     */
    Printer<?> getPrinter(A annotation, Class<?> fieldType);

    /**
     * Get the Parser to parse a submitted value for a field of {@code fieldType}
     * annotated with {@code annotation}.
     * <p>If the object the parser returns is not assignable to {@code fieldType},
     * a coercion to {@code fieldType} will be attempted before the field is set.
     * 通过注解和字段类型获取解析接口
     * @param annotation the annotation instance
     * @param fieldType the type of field that was annotated
     * @return the parser
     */
    Parser<?> getParser(A annotation, Class<?> fieldType);

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文