<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Spring提供的一個core.convert包 是一個通用型別轉換系統。它提供了統一的 ConversionService API和強型別的Converter SPI,用於實現從一種型別到另一種型別的轉換邏輯。Spring容器使用這個系統繫結bean屬性值。此外,Spring Expression Language (SpEL)和DataBinder都使用這個系統來繫結欄位值。例如,當SpEL需要將Short強制轉換為Long來完成表示式時。setValue(物件bean,物件值)嘗試,核心。轉換系統執行強制轉換。
現在考慮典型使用者端環境(例如web或桌面應用程式)的型別轉換需求。在這種環境中,通常從String轉換為支援使用者端回發過程,並返回String以支援檢視呈現過程。此外,你經常需要在地化String值。更一般的core.convert Converter SPI不能直接解決這些格式要求。為了直接解決這些問題,Spring 3引入了一個方便的Formatter SPI,它為使用者端環境提供了PropertyEditor實現的一個簡單而健壯的替代方案。
通常,當你需要實現通用型別轉換邏輯時,你可以使用Converter SPI,例如,用於java.util.Date和Long之間的轉換。當你在使用者端環境(例如web應用程式)中工作並需要解析和列印在地化的欄位值時,你可以使用Formatter SPI。ConversionService為這兩個spi提供了統一的型別轉換API。
實現欄位格式化邏輯的Formatter SPI是簡單且強型別的。下面的清單顯示了Formatter介面定義:
package org.springframework.format; public interface Formatter<T> extends Printer<T>, Parser<T> { }
Formatter繼承自Printer和Parser介面。
@FunctionalInterface public interface Printer<T> { String print(T object, Locale locale); } @FunctionalInterface public interface Parser<T> { T parse(String text, Locale locale) throws ParseException; }
預設情況下Spring容器提供了幾個Formatter實現。數位包提供了NumberStyleFormatter、CurrencyStyleFormatter和PercentStyleFormatter來格式化使用java.text.NumberFormat的number物件。datetime包提供了一個DateFormatter來用java.text.DateFormat格式化 java.util.Date物件。
自定義Formatter。
public class StringToNumberFormatter implements Formatter<Number> { @Override public String print(Number object, Locale locale) { return "結果是:" + object.toString(); } @Override public Number parse(String text, Locale locale) throws ParseException { return NumberFormat.getInstance().parse(text); } }
如何使用?我們可以通過FormattingConversionService 轉換服務進行新增自定義的格式化類。
FormattingConversionService fcs = new FormattingConversionService(); // 預設如果不新增自定義的格式化類,那麼程式執行將會報錯 fcs.addFormatterForFieldType(Number.class, new StringToNumberFormatter()); Number number = fcs.convert("100.5", Number.class); System.out.println(number);
檢視原始碼:
public class FormattingConversionService extends GenericConversionService implements FormatterRegistry, EmbeddedValueResolverAware { public void addFormatterForFieldType(Class<?> fieldType, Formatter<?> formatter) { addConverter(new PrinterConverter(fieldType, formatter, this)); addConverter(new ParserConverter(fieldType, formatter, this)); } private static class PrinterConverter implements GenericConverter {} private static class ParserConverter implements GenericConverter {} } public class GenericConversionService implements ConfigurableConversionService { private final Converters converters = new Converters(); public void addConverter(GenericConverter converter) { this.converters.add(converter); } }
Formatter最後還是被適配成GenericConverter(型別轉換介面)。
欄位格式化可以通過欄位型別或註釋進行設定。要將註釋繫結到Formatter,請實現AnnotationFormatterFactory。
public interface AnnotationFormatterFactory<A extends Annotation> { Set<Class<?>> getFieldTypes(); Printer<?> getPrinter(A annotation, Class<?> fieldType); Parser<?> getParser(A annotation, Class<?> fieldType); }
類及其方法說明:
引數化A為欄位註解型別,你希望將該欄位與格式化邏輯關聯,例如org.springframework.format.annotation.DateTimeFormat。
自定義註解解析器。
public class StringToDateFormatter implements AnnotationFormatterFactory<DateFormatter> { @Override public Set<Class<?>> getFieldTypes() { return new HashSet<Class<?>>(Arrays.asList(Date.class)); } @Override public Printer<?> getPrinter(DateFormatter annotation, Class<?> fieldType) { return getFormatter(annotation, fieldType); } @Override public Parser<?> getParser(DateFormatter annotation, Class<?> fieldType) { return getFormatter(annotation, fieldType); } private StringFormatter getFormatter(DateFormatter annotation, Class<?> fieldType) { String pattern = annotation.value(); return new StringFormatter(pattern); } class StringFormatter implements Formatter<Date> { private String pattern; public StringFormatter(String pattern) { this.pattern = pattern; } @Override public String print(Date date, Locale locale) { return DateTimeFormatter.ofPattern(pattern, locale).format(date.toInstant()); } @Override public Date parse(String text, Locale locale) throws ParseException { DateTimeFormatter formatter = DateTimeFormatter.ofPattern(pattern, locale); return Date.from(LocalDate.parse(text, formatter).atStartOfDay().atZone(ZoneId.systemDefault()).toInstant()); } } }
註冊及使用:
public class Main { @DateFormatter("yyyy年MM月dd日") private Date date; public static void main(String[] args) throws Exception { FormattingConversionService fcs = new FormattingConversionService(); fcs.addFormatterForFieldAnnotation(new StringToDateFormatter()); Main main = new Main(); Field field = main.getClass().getDeclaredField("date"); TypeDescriptor targetType = new TypeDescriptor(field); Object result = fcs.convert("2022年01月21日", targetType); System.out.println(result); field.setAccessible(true); field.set(main, result); System.out.println(main.date); } }
FormatterRegistry是用於註冊格式化程式和轉換器的SPI。FormattingConversionService是FormatterRegistry的一個實現,適用於大多數環境。可以通過程式設計或宣告的方式將該變體設定為Spring bean,例如使用FormattingConversionServiceFactoryBean。因為這個實現還實現了ConversionService,所以您可以直接設定它,以便與Spring的DataBinder和Spring表示式語言(SpEL)一起使用。
public interface FormatterRegistry extends ConverterRegistry { void addPrinter(Printer<?> printer); void addParser(Parser<?> parser); void addFormatter(Formatter<?> formatter); void addFormatterForFieldType(Class<?> fieldType, Formatter<?> formatter); void addFormatterForFieldType(Class<?> fieldType, Printer<?> printer, Parser<?> parser); void addFormatterForFieldAnnotation(AnnotationFormatterFactory<? extends Annotation> annotationFormatterFactory); }
@Configuration @EnableWebMvc public class WebConfig implements WebMvcConfigurer { @Override public void addFormatters(FormatterRegistry registry) { // ... } }
SpringBoot中有如下的預設型別轉換器。
public class WebMvcAutoConfiguration { public static class EnableWebMvcConfiguration extends DelegatingWebMvcConfiguration implements ResourceLoaderAware { @Bean @Override public FormattingConversionService mvcConversionService() { Format format = this.mvcProperties.getFormat(); WebConversionService conversionService = new WebConversionService(new DateTimeFormatters().dateFormat(format.getDate()).timeFormat(format.getTime()).dateTimeFormat(format.getDateTime())); addFormatters(conversionService); return conversionService; } } }
到此這篇關於Spring中欄位格式化的使用詳解的文章就介紹到這了,更多相關Spring欄位格式化內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45