Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 272 Bytes

Spring-Formatter.md

File metadata and controls

12 lines (8 loc) · 272 Bytes

Spring Formatter

  • 类全路径: org.springframework.format.Formatter
publicinterfaceFormatter<T> extendsPrinter<T>, Parser<T> { }
  • 该接口继承了 printer 和 parser 两个接口.
  • 比较常见的有: DateFormatter 就是继承这个接口.
close