Package org.springframework.web.bind

Examples of org.springframework.web.bind.ServletRequestDataBinder.convertIfNecessary()


                    "for the corresponding primitive type.");
              }
            }
            ServletRequestDataBinder binder = createBinder(request, null, paramName);
            initBinder(handler, paramName, binder, webRequest, request, response);
            args[i] = binder.convertIfNecessary(paramValue, param.getParameterType(), param);
          }
          else {
            // Bind request parameter onto object...
            if (sessionAttributeSet != null &&
                (sessionAttributeSet.contains(attrName) || sessionAttributeSet.contains(param.getParameterType())) &&
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.