springmvc rest框架搭建中遇到的问题-xml转换错误
...
而demo里是好的啊,我怎么就出问题了呢。。。
调试了spring源代码,在model的map中发现,spring转的bean不是我塞进去的Task对象,而是BindingResult.task,如下:
{org.springframework.validation.BindingResult.task=org.springframework.validation.BeanPropertyBindingResult: 0 errors, task=com.css.pms.demo.entity.Task@1b1dfe5}
?
我要调试了下rapdi的demo,发现它的model里面的map和我一样啊,为啥它取出来的却是正确的呢?
rapid代码
ModelAndView result = new ModelAndView();
result.addObject("userinfo",userinfo);
{userInfo=com.company.project.model.UserInfo@7da18e[UserId=1,Username=badqiu,Password=123,BirthDate=<null>,Sex=1,Age=2], org.springframework.validation.BindingResult.userInfo=org.springframework.validation.BeanPropertyBindingResult: 0 errors}
?
在spring源代码处终于发现了问题所在:
?在AnnotationMethodHandlerAdapter类的getModelAndView方法中?
??? ModelAndView mav = (ModelAndView) returnValue;//这里的mav中的ModelMap是个LinkedHashMap
????mav.getModelMap().mergeAttributes(implicitModel);
?
?? 但是随后的,AbstractView的public void render(Map<String, ?> model, HttpServletRequest request, HttpServletResponse response)方法
?Map<String, Object> mergedModel =
????new HashMap<String, Object>(this.staticAttributes.size() + (model != null ? model.size() : 0));
??mergedModel.putAll(this.staticAttributes);
??if (model != null) {
???mergedModel.putAll(model);
??}
这里又变成了普通的HashMap
?
?在MarshallingView中的locateToBeMarshalled方法中中,是遍历获取第一个对象的
?for (Object o : model.values()) {
??? ...
?}
? 但由于此时的model已经不是LinkedHashMap,只是普通的HashMap,导致里面的BindingResult对象和Bean对象的顺序有可能变掉了(hashmap按照字母排?),
? 至于我的程序取出来的bean是错误的,而rapid的demo里面取出来的是正确的,只是demo的狗屎运,没碰上这个问题。
? 为了验证,我把我的程序里的result.addObject("task",task);改成result.addObject("userinfo",task);
而demo里的改成相反的,结果,我的xml内容对了,demo的xml内容错了。
解决办法一:在网上找到了老外的解决办法:
原先的result.addObject("task",task);
得变成result.addObject(BindingResult.MODEL_KEY_PREFIX + "task", task);? 太丑陋了,不喜欢,同时,加了这个前缀,转成json又出现问题了
解决办法二:老样子,重写spring中配置的org.springframework.web.servlet.view.xml.MarshallingView
改写这个locateToBeMarshalled方法
粗暴的将遇到的BindingResult对象跳过
if(o instanceof BindingResult){
????continue;
???}
算是暂时解决了。
总结:这次框架的搭建,让我感受到真不容易啊,网上的代码示例比比皆是,但挪到自己身上才发现问题一大堆
BindingResult问题,spring的bug
cglib代理类的问题,凡是beantoxml的工具,都有遇到,xstream,jaxb2,castor,目前只有castor1.2版本解决了这个问题,而最新的1.3.1版本,反而没有去重测这个功能,导致错误。
以上为网上解决方案
--------
我的解决方案
其实很简单在
?
<bean name="xmlStreamView" value="result"></property>
设置下
modelKey
即可:以后每个model中返回前端的key必选为设置的这个固定key。
spring自动转xml的不足之处,就是ModelMap中不可以放置多个,只能转换一个。
?
?
?