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
31
32 @Override
33 protected ServletRequestDataBinderFactory createDataBinderFactory(
34 List<InvocableHandlerMethod> binderMethods) throws Exception {
35 return new UifServletRequestDataBinderFactory(binderMethods, getWebBindingInitializer());
36 }
37
38
39 }