Examples of addConverter()


Examples of org.springframework.core.convert.support.GenericConversionService.addConverter()

  @InitBinder
  void registerConverters(WebDataBinder binder) {
    if (binder.getConversionService() instanceof GenericConversionService) {
      GenericConversionService conversionService = (GenericConversionService) binder.getConversionService();
      conversionService.addConverter(getLoanSharkConverter());
    }
  }

  @RequestMapping(value = "/{id}", method = RequestMethod.GET, headers = "Accept=application/json")
  @ResponseBody
View Full Code Here

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

    public DateConvertingAuditableBeanWrapper() {

      DefaultFormattingConversionService conversionService = new DefaultFormattingConversionService();

      if (IS_JODA_TIME_PRESENT) {
        conversionService.addConverter(CalendarToDateTimeConverter.INSTANCE);
        conversionService.addConverter(CalendarToLocalDateTimeConverter.INSTANCE);
      }

      this.conversionService = conversionService;
    }
View Full Code Here

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

      DefaultFormattingConversionService conversionService = new DefaultFormattingConversionService();

      if (IS_JODA_TIME_PRESENT) {
        conversionService.addConverter(CalendarToDateTimeConverter.INSTANCE);
        conversionService.addConverter(CalendarToLocalDateTimeConverter.INSTANCE);
      }

      this.conversionService = conversionService;
    }
View Full Code Here

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.