Package org.springframework.format.support

Examples of org.springframework.format.support.FormattingConversionService.addConverter()


 
  @Override
  public FormattingConversionService mvcConversionService() {
    FormattingConversionService formattingConversionService = super.mvcConversionService();
    if(env.getProperty("input.trimToNull", Boolean.class, Boolean.TRUE)){
      formattingConversionService.addConverter(new Converter<String, String>() {
        public String convert(String source) { return StringUtils.trimToNull(source); }});
    }
   
    return formattingConversionService;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.