91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring security自定義登錄成功后的處理是什么樣的

發布時間:2021-10-20 17:19:59 來源:億速云 閱讀:219 作者:柒染 欄目:大數據

Spring security自定義登錄成功后的處理是什么樣的,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

我們來講一下如何自定義登錄成功后的處理邏輯。先來回顧下默認情況下,登錄成功過后spring security 會幫我們做些什么: 未登錄的情況下,我們直接訪問應用中的資源,頁面會自動跳轉到登錄頁;當登錄成功后,頁面會自動重定向到我登錄前請求的 url。

如何更改默認的登錄成功后的處理結果

比如:如果我們想在登錄成功后,響應一個 json 字符串(包括“登錄成功”這樣的提示信息,響應code,以及跳轉的url)給前端。應該怎么辦?

步驟 1

首先復制上一節的項目工程 spring-security-02,重命名為 Spring-security-03。 maven 依賴不需要改變,如下所示:

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-security</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>

	</dependencies>

步驟2

定義登錄成功后的處理類 GoAuthenticationSuccessHandler

	/**
	 * 自定義 登錄成功 處理類
	 */
	[@Component](https://my.oschina.net/u/3907912)
	public class GoAuthenticationSuccessHandler implements AuthenticationSuccessHandler {

		@Autowired
		private ObjectMapper objectMapper;

		/**
		 * {"code":200,"message":"操作成功","data":"登錄成功"}
		 * [@param](https://my.oschina.net/u/2303379) request
		 * [@param](https://my.oschina.net/u/2303379) response
		 * [@param](https://my.oschina.net/u/2303379) authentication
		 * @throws IOException
		 * @throws ServletException
		 */
		@Override
		public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication)
				throws IOException, ServletException {
			response.setHeader("Content-Type", "application/json;charset=utf-8");
			response.getWriter().print(objectMapper.writeValueAsString(CommonResult.success("登錄成功")));
			response.getWriter().flush();
		}
	}

步驟2

在 WebSecurityConfig 配置類中,注入自定義處理類的依賴 :

@Autowired
private GoAuthenticationSuccessHandler successHandler;
@Autowired
private GoAuthenticationFailureHandler failureHandler;

步驟3

在 protected void configure(HttpSecurity http) 方法中,追加如下代碼:

	// 這些是本來就有的
	http.formLogin()
	.loginPage("/loginPage.html")// 自定義登錄頁
	.loginProcessingUrl("/form/login")// 自定義登錄 action, 名字隨便起
	// 以下是新增的
	.successHandler(successHandler)// 自定義登錄成功處理類
	.failureHandler(failureHandler);// 自定義登錄失敗處理類

小結

從上面的代碼中我們可以看到,新增了兩個配置,在 successHandler 和 failureHandler 方法中分別注入了一個處理類,我們著重看下 GoAuthenticationSuccessHandler 處理類, 通過重寫 AuthenticationSuccessHandler 的方法,響應了一段json給前端。 而failureHandler 是登錄失敗時做一些處理,在這里我們會響應登錄失敗的message給前端。這些響應結果我們都可以自定義。 你可以根據實際需求去選擇是否需要自定義這些處理類。

擴展

回顧一下,之前如果用戶沒有登錄直接訪問我們的應用資源,會自動跳轉到登錄頁,如果登錄成功后,去訪問沒有權限的url,會給我們一段英文提示,大致意思就是沒有權限。這些我們仍然是可以定制的。比如當我們沒有登錄時,給前端提示“用戶未登錄”,當我們沒有權限時,提示前端“用戶沒有權限”。

步驟1

定義兩個處理類 GoAuthenticationEntryPoint 和 GoAccessDeniedHandler

`

/**
 * 自定義 未登錄 或者 token 失效 處理類
 */
@Component
public class GoAuthenticationEntryPoint implements AuthenticationEntryPoint {

	@Autowired
	private ObjectMapper objectMapper;

	@Override
	public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException {
		response.setCharacterEncoding("UTF-8");
		response.setContentType("application/json");
		response.getWriter().println(objectMapper.writeValueAsString(CommonResult.unauthorized(authException.getMessage())));
		response.getWriter().flush();
	}
}

/**
 * 自定義沒有訪問權限處理類
 */
@Component
public class GoAccessDeniedHandler implements AccessDeniedHandler {

	@Autowired
	private ObjectMapper objectMapper;

	/**
	 * @param request
	 * @param response
	 * @param e
	 * @throws IOException
	 * @throws ServletException
	 *
	 * @return {"code":403,"message":"沒有相關權限","data":"Access is denied"}
	 */
	@Override
	public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException e) throws IOException, ServletException {
		response.setHeader("Content-Type", "application/json;charset=utf-8");
		response.getWriter().print(objectMapper.writeValueAsString(CommonResult.forbidden(e.getMessage())));
		response.getWriter().flush();
	}
}

`

步驟2

將自定義的兩個處理類注入到 WebSecurityConfig 類中

` @Autowired private GoAccessDeniedHandler accessDeniedHandler;

@Autowired
private GoAuthenticationEntryPoint entryPoint;

`

步驟3

打開 WebSecurityConfig 配置類,在 configure 方法中追加如下代碼:

@Override protected void configure(HttpSecurity http) throws Exception { // 此處省略一部分代碼 http.exceptionHandling() .accessDeniedHandler(accessDeniedHandler)// 用戶沒有訪問權限處理器 .authenticationEntryPoint(entryPoint);// 用戶沒有登錄處理器 }

上面我們總共定義了四個處理類,分別作用于以下四種情況發生之后:

  1. 當我們登錄成功后。

  2. 當我們登錄失敗后。

  3. 當我們沒有登錄而去訪問資源時。

  4. 當我們訪問沒有權限的資源時。

看完上述內容,你們掌握Spring security自定義登錄成功后的處理是什么樣的的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

赤水市| 封开县| 平定县| 新平| 祁门县| 陇西县| 嘉义县| 景德镇市| 陆川县| 吉木乃县| 呼图壁县| 达尔| 陕西省| 天柱县| 临潭县| 瓮安县| 阳朔县| 汝城县| 平山县| 沅江市| 阜平县| 曲麻莱县| 都昌县| 米林县| 二连浩特市| 容城县| 开平市| 共和县| 元江| 体育| 浠水县| 外汇| 乳源| 清苑县| 城步| 都兰县| 酒泉市| 文山县| 台南市| 株洲市| 新巴尔虎左旗|