@ResultMapping注解

Posted guoDaXia的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@ResultMapping注解相关的知识,希望对你有一定的参考价值。

@RequestMapping注解
1、url映射
放在方法上:@RequestMapping("/itemsEdit")
2、窄化url请求映射
放在类上,定义根路径,url就变成根路径+方法路径,类似于namespace的概念
后面的url:/items/itemsEdit
@RequestMapping("/items")
3、窄化HTTP请求
限制http请求只能是哪些类型才可以访问该url,访问方式错误报错405
@RequestMapping(value="itemsEdit",method={RequestMethod.POST,RequestMethod.GET})

以上是关于@ResultMapping注解的主要内容,如果未能解决你的问题,请参考以下文章

完美解决Could not process result for mapping: ResultMapping{property=‘null‘, column=‘xxx‘, javaType=

完美解决Could not process result for mapping: ResultMapping{property=‘null‘, column=‘xxx‘, javaType=

完美解决Could not process result for mapping: ResultMapping{property=‘null‘, column=‘xxx‘, javaType=

完美解决Could not process result for mapping: ResultMapping{property=‘null‘, column=‘xxx‘, javaType=

resultmap与resulttype有啥区别

各位大拿进来看看,关于ibatis的resultmap找不到的问题