SpringMVC - controller中獲取session
平時使用springMVC
在方法中訪問session中經常很自然地呼叫Servlet API。
用起來非常直觀方便,一直沒有多考慮什麼。
比如這樣:
@RequestMapping(value = "/logout")
public String logout(HttpSession session) {
session.removeAttribute("user");
return "/login";
}
但畢竟這樣對Servlet API產生了依賴,感覺不夠pojo。
於是我試著解決這個問題。
我打算用一個註解,名字就叫"sessionScope",Target可以是一個Method,也可以是Parameter。
也就是說:
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ ElementType.PARAMETER,ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SessionScope {
String value();
}
程式碼如下:
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.MethodParameter;
import org.springframework.web.bind.support.WebDataBinderFactory;
import org.springframework.web.context.request.NativeWebRequest;
import org.springframework.web.context.request.RequestAttributes;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.method.support.ModelAndViewContainer;
public class SessionScopeMethodArgumentResolver implements
HandlerMethodArgumentResolver {
@Override
public boolean supportsParameter(MethodParameter parameter) {
//讓方法和引數,兩種target通過
if(parameter.hasParameterAnnotation(SessionScope.class))return true;
else if (parameter.getMethodAnnotation(SessionScope.class) != null)return true;
return false;
}
@Override
public Object resolveArgument(MethodParameter parameter,
ModelAndViewContainer mavContainer, NativeWebRequest webRequest,
WebDataBinderFactory binderFactory) throws Exception {
String annoVal = null;
if(parameter.getParameterAnnotation(SessionScope.class)!=null){
logger.debug("param anno val::::"+parameter.getParameterAnnotation(SessionScope.class).value());
annoVal = parameter.getParameterAnnotation(SessionScope.class).value();
}else if(parameter.getMethodAnnotation(SessionScope.class)!=null){
logger.debug("method anno val::::"+parameter.getMethodAnnotation(SessionScope.class).value());
annoVal = parameter.getMethodAnnotation(SessionScope.class)!=null?StringUtils.defaultString(parameter.getMethodAnnotation(SessionScope.class).value()):StringUtils.EMPTY;
}
if (webRequest.getAttribute(annoVal,RequestAttributes.SCOPE_SESSION) != null){
return webRequest.getAttribute(annoVal,RequestAttributes.SCOPE_SESSION);
}
else
return null;
}
final Logger logger = LoggerFactory.getLogger(SessionScopeMethodArgumentResolver.class);
}
supportParameter判斷物件是否被註解,被註解則進行resolve。
resolve時獲取註解值,註解值為session key,用webRequest從session scope中取值。
另外需要將此配置放到org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter的customArgumentResolvers列表中,可以使用bean標籤配置,也可以直接使用mvc標籤。
即:
namespace為:xmlns:mvc="http://www.springframework.org/schema/mvc"
schema location為:http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
<span style="font-size:12px;"><mvc:annotation-driven>
<mvc:argument-resolvers>
<bean class="pac.common.SessionScopeMethodArgumentResolver" />
</mvc:argument-resolvers>
</mvc:annotation-driven>
<mvc:default-servlet-handler /></span>
話說mvc:annotation-driven和mvc:default-servlet-handler的順序不能顛倒,該不會只有我出現這種情況吧- -..
現在可以在controller中使用了,比如:
@RequestMapping(value = "/index")
@SessionScope("currentUser")
public ModelAndView index(User currentUser) {
ModelAndView mav;
if (currentUser==null || currentUser.getId()==null)
mav = new ModelAndView("/login");
else {
mav = new ModelAndView("/index");
}
return mav;
}
或者在引數上註解:
@RequestMapping(value = "/welcome")
public String welcome(@SessionScope("currentUser")User currentUser) {
return "/main";
}
至於更新session,目前只是用@sessionAttributes配合ModelMap的方式。
嗯,我不是很喜歡這種方式...
或者我可以不用這樣做,直接整合Apache Shiro,在controller中直接getSubject()。
把使用者資訊完全讓shiro負責,嗯,這個好。
相關文章
- 從session中獲取資料Session
- SpringMVC原始碼之Handler註冊、獲取以及請求controller中方法SpringMVC原始碼Controller
- springMVC中controller的返回值SpringMVCController
- SpringMvc的Controller singleton synchronizedSpringMVCControllersynchronized
- SpringMVC【開發Controller】詳解SpringMVCController
- SpringMVC 解析(三) Controller 註解SpringMVCController
- SpringMVC的資料獲取問題SpringMVC
- Grails通過sessionId獲取session物件AISession物件
- 獲取本session的sid和serial#Session
- (七)Spring Boot Controller的請求引數獲取Spring BootController
- SpringMVC常用註解@Controller,@Service,@repository,@ComponentSpringMVCController
- 當laravel獲取不到session的三種解決辦法LaravelSession
- 如何透過Spring Data/EntityManager/Session直接獲取DTO資料?SpringSession
- WebApi和Mvc的Session一直獲取不到問題WebAPIMVCSession
- SpringMVC何時載入的controller裡的mapping方法SpringMVCControllerAPP
- 拙見--springMVC的controller接受的請求引數SpringMVCController
- 配置session——快取Session快取
- 網站安全漏洞之SESSION防跨站攻擊獲取網站Session
- Swift view 中 獲取ViewControllerSwiftViewController
- SpringMVC @Transactional的陷井大坑引發No Session found for current threadSpringMVCSessionthread
- SpringMVC(3)-request域和session域的作用和區別SpringMVCSession
- 【Javascript】獲取選中的文字JavaScript
- JavaScript獲取選中checkbox valueJavaScript
- js中獲取鍵盤事件JS事件
- 在 JDBC 中獲取插入 IDJDBC
- python中獲取如何Series值Python
- 說說SpringMVC從http流到Controller介面引數的轉換過程SpringMVCHTTPController
- Cookie && Session && localStorage && sessionstorage && HTTP快取CookieSessionHTTP快取
- 前後端頁面分離導致session無法正常獲取的問題後端Session
- 從 falcon api 中獲取資料API
- Firefox 69 已可在 Fedora 中獲取Firefox
- 如何獲取 jenkins 中的憑證Jenkins
- spring mvc中獲取請求URLSpringMVC
- Java獲取Object中Value的方法JavaObject
- Rust中如何獲取最大字串?Rust字串
- Flutter 中的資料的獲取Flutter
- ios storyboard 獲取storyboard中的viewControlleriOSViewController
- JavaScript 獲取選中checkbox核取方塊的值JavaScript
- Egg 中 Controller 最佳實踐Controller