中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

spring security的簡單例子分析

發布時間:2021-11-16 09:24:02 來源:億速云 閱讀:140 作者:iii 欄目:大數據

這篇文章主要講解了“spring security的簡單例子分析”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“spring security的簡單例子分析”吧!

1 pom.的主要文件 我引入的thymeleaf-extras-springsecurity5,springboot2.1.6 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>

    <!-- https://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity4 -->
    <dependency>
        <groupId>org.thymeleaf.extras</groupId>
        <artifactId>thymeleaf-extras-springsecurity5</artifactId>

    </dependency>

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

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>
2 controller
[@Controller](https://my.oschina.net/u/1774615)

public class KungfuController {

private final String PREFIX = "pages/";

@RequestMapping("/")

public String index() {

	System.out.println("hello word");
	
	return "welcome";
}

@RequestMapping("/userlogin")

public String loginPage() {

	return PREFIX+"login1";
}

@GetMapping("/level1/{path}")

public String level1(@PathVariable("path")String path) {

	return PREFIX+"level1/"+path;
}

@GetMapping("/level2/{path}")

public String level2(@PathVariable("path")String path) {

	return PREFIX+"level2/"+path;
}

@GetMapping("/level3/{path}")

public String level3(@PathVariable("path")String path) {

	return PREFIX+"level3/"+path;
}

}

//配置下

@EnableWebSecurity public class mySecurity extends WebSecurityConfigurerAdapter {

//為啥引入這個bean ,因為在securety在5.0后使用系統的登錄模板,默認把密碼給加密啦,這個寫的是不讓密碼加密

@Bean
public static NoOpPasswordEncoder passwordEncoder() {

    return (NoOpPasswordEncoder) NoOpPasswordEncoder.getInstance();
}


protected void configure(HttpSecurity http) throws Exception {

   //定制請求的授權規則
    http.authorizeRequests().antMatchers("/").permitAll()
	
            .antMatchers("/level1/**").hasRole("VIP1")
			
            .antMatchers("/level2/**").hasRole("VIP2")
			
            .antMatchers("/level3/**").hasRole("VIP3");
			
    //開啟自動登錄的功能
	
 http.formLogin();
 
 //開啟自動配置的注銷功能
 
 http.logout().logoutSuccessUrl("/");
 
}


public void configure(AuthenticationManagerBuilder auth) throws Exception {

    auth.inMemoryAuthentication().withUser("mao").password("123").roles("VIP1","VIP2")
	
            .and().withUser("zhang").password("123").roles("VIP1","VIP3").and()
			
            .withUser("li").password("123").roles("VIP2","VIP3");
			
}

} //該模板都是尚學堂的

<!DOCTYPE html>

<html xmlns:th="http://www.thymeleaf.org"

  xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity5">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

<h2 align="center">歡迎光臨武林秘籍管理系統</h2>

<div sec:authorize="!isAuthenticated()">

<h3 align="center">游客您好,如果想查看武林秘籍 <a th:href="@{/login}">請登錄</a></h3>

</div>

<div sec:authorize="isAuthenticated()">

<h3><span sec:authentication="name"></span>,您好,您的角色有:

	<span sec:authentication="principal.authorities"></span></h3>
	
<form th:action="@{/logout}" method="post">

	<input type="submit" value="注銷"/>
</form>

感謝各位的閱讀,以上就是“spring security的簡單例子分析”的內容了,經過本文的學習后,相信大家對spring security的簡單例子分析這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

邓州市| 贵定县| 周至县| 内黄县| 黑龙江省| 铜陵市| 耿马| 白水县| 繁昌县| 榆中县| 和静县| 临江市| 莱芜市| 凯里市| 桓仁| 丰城市| 沐川县| 木里| 南宫市| 日照市| 舒城县| 鄱阳县| 无棣县| 平阴县| 新沂市| 洪洞县| 辽阳县| 都安| 商丘市| 海阳市| 保德县| 阿拉善盟| 深水埗区| 鄂托克前旗| 郓城县| 新疆| 雷州市| 闸北区| 格尔木市| 涡阳县| 泸定县|