View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.config;import org.springframework.beans.propertyeditors.StringTrimmerEditor;import org.springframework.web.bind.WebDataBinder;import org.springframework.web.bind.annotation.ControllerAdvice;import org.springframework.web.bind.annotation.InitBinder;@ControllerAdvicepublic class ControllerSetup{@InitBinderpublic void initBinder ( WebDataBinder binder ){StringTrimmerEditor stringtrimmer = new StringTrimmerEditor(true);binder.registerCustomEditor(String.class, stringtrimmer);}}