Converter可以将一种类型转换成另一种类型,是任意Object之间的类型转换。 Formatter则只能进行String与任意Object对象的转换,它提供 解析 与 格式化 两种功能。 其中: 解析 是将String类型字符串转换为任意Object对象, 格式化 是将任意Object对象转换为字符串进行格式化显示。 使用Formatter 1: 实现Formatter<T>接口定义一个类,T为要解析得到或进行格式化的数据类型。 在类中实现两个方法:String print(T t,Locale locale)和 T parse(String sourse,Locale locale),前者把T类型对象解析为字符串形式返回,后者由字符串解析得到T类型对象。
Converter
Object
Formatter
String
Formatter<T>
String print(T t,Locale locale)
T parse(String sourse,Locale locale)
DateFormatter.java
import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; import org.springframework.format.Formatter; //实现Formatter<T> 接口 public class DateFormatter implements Formatter<Date>{ // 日期类型模板:如yyyy-MM-dd private String datePattern; // 日期格式化对象 private SimpleDateFormat dateFormat; // 构造器,通过依赖注入的日期类型创建日期格式化对象 public DateFormatter(String datePattern) { this.datePattern = datePattern; this.dateFormat = new SimpleDateFormat(datePattern); } // 显示Formatter<T>的T类型对象 @Override public String print(Date date, Locale locale) { return dateFormat.format(date); } // 解析文本字符串返回一个Formatter<T>的T类型对象。 @Override public Date parse(String source, Locale locale) throws ParseException { try { return dateFormat.parse(source); } catch (Exception e) { throw new IllegalArgumentException(); } } }
springmvc
springmvc-config.xml
<!-- 引入 xmlns:c="http://www.springframework.org/schema/c" --> <!-- 装配自定义格式化转换器--> <mvc:annotation-driven conversion-service="conversionService"/> <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean"> <property name="formatters"> <list> <bean class="com.formatter.DataFormatter" c:_0="yyyy-MM-dd"></bean> </list> </property> </bean>
<mvc:annotation-driven conversion-service="conversionService"/> <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean"> <property name="formatters"> <list> <bean class="org.springframework.format.datetime.DateFormatter" p:pattern="yyyy-MM-dd HH:mm:ss"/> </list> </property> </bean>
org.springframework.format.number
NumberStyleFormatter
CurrencyStyleFormatter
PercentStyleFormatter
FormatterRegistrar
MyFormatterRegistrar.java
import org.springframework.format.FormatterRegistrar; import org.springframework.format.FormatterRegistry; public class MyFormatterRegistrar implements FormatterRegistrar { private DateFormatter dateFormatter; public void setDateFormatter(DateFormatter dateFormatter) { this.dateFormatter = dateFormatter; } @Override public void registerFormatters(FormatterRegistry registry) { registry.addFormatter(dateFormatter); } }
<!-- 引入 xmlns:c="http://www.springframework.org/schema/c" --> <!-- 装配自定义格式化转换器--> <mvc:annotation-driven conversion-service="conversionService"/> <!-- DateFormatter bean --> <bean id="dateFormatter" class="com.zhougl.web.formatter.DateFormatter" c:_0="yyyy-MM-dd"/> <!-- 格式化 --> <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean"> <property name="formatterRegistrars"> <set> <bean class="com.zhougl.web.formatter.MyFormatterRegistrar" p:dateFormatter-ref="dateFormatter"/> </set> </property> </bean>
AnnotationFormatterFactory<A extends Annotation>
org.springframework.format.annotation包下定义的注解类:
org.springframework.format.annotation
注解@JsonFormat主要是后台到前台的时间格式的转换 注解@DataFormat主要是前后到后台的时间格式的转换
@JsonFormat
@DataFormat
DateTimeFormat,互斥属性:
DateTimeFormat
DateTimeFormat.ISO
DateTimeFormat.ISO.DATE
yyyy-MM-dd
DateTimeFormat.ISO.DATE_TIME
yyyy-MM-dd HH:mm:ss .SSSZ
DateTimeFormat.ISO.TIME
HH:mm:ss .SSSZ
DateTimeFormat.ISO.NONE
NumberFormat
NumberFormat.Style
Style.NUMBER
Style.PERCENT
Style.CURRENCY
// 域对象,实现序列化接口 public class User implements Serializable{ // 日期类型 @DateTimeFormat(pattern="yyyy-MM-dd") private Date birthday; // 正常数字类型 @NumberFormat(style=Style.NUMBER, pattern="#,###") private int total; // 百分数类型 @NumberFormat(style=Style.PERCENT) private double discount; // 货币类型 @NumberFormat(style=Style.CURRENCY) private double money; ... }
@Controller public class FormatterController{ private static final Log logger = LogFactory.getLog(FormatterController.class); @RequestMapping(value="/{formName}") public String loginForm(@PathVariable String formName){ // 动态跳转页面 return formName; } @RequestMapping(value="/test",method=RequestMethod.POST) public String test( @ModelAttribute User user, Model model) { logger.info(user); model.addAttribute("user", user); return "success"; } }
testForm.jsp
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>测试AnnotationFormatterFactory 接口</title> </head> <body> <h3>测试表单数据格式化</h3> <form action="test" method="post"> <table> <tr> <td><label>日期类型: </label></td> <td><input type="text" id="birthday" name="birthday" ></td> </tr> <tr> <td><label>整数类型: </label></td> <td><input type="text" id="total" name="total" ></td> </tr> <tr> <td><label>百分数类型: </label></td> <td><input type="text" id="discount" name="discount" ></td> </tr> <tr> <td><label>货币类型: </label></td> <td><input type="text" id="money" name="money" ></td> </tr> <tr> <td><input id="submit" type="submit" value="提交"></td> </tr> </table> </form> </body> </html>
success.jsp
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>测试AnnotationFormatterFactory</title> </head> <body> <h3>测试表单数据格式化</h3> <form:form modelAttribute="user" method="post" action="" > <table> <tr> <td>日期类型:</td> <td><form:input path="birthday"/></td> </tr> <tr> <td>整数类型:</td> <td><form:input path="total"/></td> </tr> <tr> <td>百分数类型:</td> <td><form:input path="discount"/></td> </tr> <tr> <td>货币类型:</td> <td><form:input path="money"/></td> </tr> </table> </form:form> </body> </html>
<!-- 默认装配 --> <mvc:annotation-driven/>
原文链接:https://www.cnblogs.com/muxi0407/p/12049254.html