springsecurity中怎么獲取用戶信息,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
創(chuàng)新互聯(lián)專注于企業(yè)網(wǎng)絡營銷推廣、網(wǎng)站重做改版、沂源網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、H5建站、商城系統(tǒng)網(wǎng)站開發(fā)、集團公司官網(wǎng)建設、成都外貿(mào)網(wǎng)站建設公司、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為沂源等各大城市提供網(wǎng)站開發(fā)制作服務。
前言
我們在使用spring security的時候可以通過好幾種方法獲取用戶信息, 但是今天這篇文章介紹的是一個筆者覺得最優(yōu)雅的實現(xiàn); 借鑒現(xiàn)有的spring security controller自動注入?yún)?shù)的方法, 我們來進一步的實現(xiàn)更適合我們業(yè)務的用戶信息獲取方法;
思路
現(xiàn)在spring security會在controller自動注入Authentication/Userdetails等參數(shù), 我們拿到這些對象之后還需要一些處理才可以拿到我們需要的信息, 例如用戶ID; 那獲取用戶ID這個步驟其實可以切片的, 我們直接在controller的參數(shù)綁定之前, 獲取到我們需要的用戶信息, 然后添加到request的param里面, 就可以實現(xiàn)獲取用戶信息, controller里面使用參數(shù)名可以直接接收參數(shù);
少啰嗦, 看代碼
首先我們這個功能的實現(xiàn)遇到額第一個障礙就是默認的HttpServletRequest是沒有提供修改Parameter的方法的, 那么我們即使獲取到用戶信息也無法寫入request; 解決這個問題就需要自己實現(xiàn)一個HttpServletRequestWrapper, 再使用一個Filter替換原來的request;
import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletRequestWrapper;import java.util.Enumeration;import java.util.HashMap;import java.util.Map;import java.util.Vector;/** * @author sunhao * @date create in 2019-12-09 14:39:52 */public class UserInfoRequest extends HttpServletRequestWrapper { private Map
這段代碼使用了樂傻驢用戶的代碼, 在此表示感謝; 然后使用Filter將原有的request替換;
@Componentpublic class UserInfoFilter extends OncePerRequestFilter { @Override protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException { filterChain.doFilter(new UserInfoRequest(request), response); }}
現(xiàn)在我們可以獲取用戶信息然后寫入request的parameter了, 這個邏輯是在filter里實現(xiàn)還是在interceptor里實現(xiàn)就看讀者自己的想法了; 筆者系統(tǒng)里面有多種用戶, 獲取用戶信息的邏輯有所不同, 所以筆者選擇使用interceptor來實現(xiàn), 可以通過自定義注解來控制注入哪種用戶信息;
@Componentpublic class UserInfoInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) { Method method = ((HandlerMethod) handler).getMethod(); AdminUserInfo adminUserInfo = method.getDeclaredAnnotation(AdminUserInfo.class); if (adminUserInfo != null) { // 獲取用戶信息的邏輯 自由發(fā)揮 Long userId = ((Admin) ((OAuth3Authentication) request.getUserPrincipal()).getPrincipal()).getId(); // 將用戶信息寫入request的parameter ((UserInfoRequest)request).addParameter("userId", userId); return true; } EmployeeUserInfo employeeUserInfo = method.getDeclaredAnnotation(EmployeeUserInfo.class); if (employeeUserInfo != null) { Long userId = ((Employee) ((OAuth3Authentication) request.getUserPrincipal()).getPrincipal()).getId(); ((UserInfoRequest)request).addParameter("userId", userId); return true; } return true; }}
上面我自己寫了兩個注解, 這兩個注解的代碼我就不貼出來了, 寫這兩個注解完全就是為了注入不同的用戶信息; 大家可以各自發(fā)揮, 注解不是必須的, 如果大家系統(tǒng)里面只有一種用戶或者由于其他原因可以直接注入parameter; 接下來配置interceptor
@Configurationpublic class WebMvcConfig implements WebMvcConfigurer { private final UserInfoInterceptor userInfoInterceptor; public WebMvcConfig(UserInfoInterceptor userInfoInterceptor) { this.userInfoInterceptor = userInfoInterceptor; } @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(userInfoInterceptor); }}
代碼寫到這里功能已經(jīng)做完了, 我們可以在controller里面這樣獲取用戶信息
@EmployeeUserInfo // 自定義注解 @GetMapping public void testObtainUserInfo(Long userId) { System.out.println("userId = " + userId); }
寫EmployeeUserInfo注解注入的就是employee的用戶信息, 寫AdminUserInfo注解注入的就是admin的用戶信息
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。