1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.web.controller;
17
18 import org.kuali.rice.krad.web.bind.UifServletRequestDataBinderFactory;
19 import org.springframework.web.method.support.InvocableHandlerMethod;
20 import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter;
21 import org.springframework.web.servlet.mvc.method.annotation.ServletRequestDataBinderFactory;
22
23 import java.util.List;
24
25
26
27
28 public class UifRequestMappingHandlerAdapter extends RequestMappingHandlerAdapter {
29
30 @Override
31 protected ServletRequestDataBinderFactory createDataBinderFactory(
32 List<InvocableHandlerMethod> binderMethods) throws Exception {
33 return new UifServletRequestDataBinderFactory(binderMethods, getWebBindingInitializer());
34 }
35 }