springMVC自定义方法属性解析器
生活随笔
收集整理的這篇文章主要介紹了
springMVC自定义方法属性解析器
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
使用場景例子:
用戶登陸系統一般會往Session里放置一個VO對象,然后在controller里會來獲取用戶的userId等信息。
之前的寫法是:@SessionAttributes配合@ModelAttribute來進行參數值的注入,但這樣需要寫2個注解,其中SessionAttributes加在類上,ModelAttribute加在方法的屬性上。
?
SpringMVC提供了HandlerMethodArgumentResolver接口來處理我們的自定義參數的解析。
例子:
1、獲取用戶信息的注解類
import java.lang.annotation.*;/*** <p>綁定當前登錄的用戶</p>* <p>不同于@ModelAttribute</p>*/ @Target({ElementType.PARAMETER}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface CurrentUser {/*** 當前用戶在request中的名字** @return*/String value() default "loginUser";}2、自定義的參數解析器
import com.gongren.cxht.pay.web.shiro.bind.annotation.CurrentUser; import org.springframework.core.MethodParameter; import org.springframework.web.bind.support.WebDataBinderFactory; import org.springframework.web.context.request.NativeWebRequest; import org.springframework.web.method.support.HandlerMethodArgumentResolver; import org.springframework.web.method.support.ModelAndViewContainer;/*** <p>自定義方法參數解析器*/ public class CurrentUserMethodArgumentResolver implements HandlerMethodArgumentResolver {public CurrentUserMethodArgumentResolver() {}@Overridepublic boolean supportsParameter(MethodParameter parameter) {if (parameter.hasParameterAnnotation(CurrentUser.class)) {return true;}return false;}@Overridepublic Object resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory) throws Exception {CurrentUser currentUserAnnotation = parameter.getParameterAnnotation(CurrentUser.class);//從session的scope里取CurrentUser注解里的value屬性值的key的valuereturn webRequest.getAttribute(currentUserAnnotation.value(), NativeWebRequest.SCOPE_SESSION);} }3、將自定義的解析器加入springmvc的配置文件里
<mvc:annotation-driven><mvc:argument-resolvers><!-- SESSION USER --><bean class="com.test.CurrentUserMethodArgumentResolver"/></mvc:argument-resolvers> </mvc:annotation-driven>在controller里的使用方法:
@RequestMapping(value = "/test") public String test(@CurrentUser AccUserVo user) {}轉載于:https://www.cnblogs.com/moxiaotao/p/9629249.html
總結
以上是生活随笔為你收集整理的springMVC自定义方法属性解析器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: (转)select、poll、epoll
- 下一篇: 洛谷——P1183 多边形的面积