最终效果
1、实现页面访问权限限制
2、用户角色区分,并按照角色区分页面权限
3、实现在数据库中存储用户信息以及角色信息
4、自定义验证代码
效果如下:
1、免验证页面
2、登陆页面
在用户未登录时,访问任意有权限要求的页面都会自动跳转到登陆页面。
3、需登陆才能查看的页面
用户登陆后,可以正常访问页面资源,同时可以正确显示用户登录名:
4、用户有角色区分,可以指定部分页面只允许有相应用户角色的人使用
4.1、只有admin觉得用户才能查看的页面(权限不足)
4.2、只有admin觉得用户才能查看的页面(权限满足)
以下具体说明实现步骤。
代码实现
maven引入依赖
在pom.xml中引入spring security依赖
1
2
3
4
|
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-security</artifactid> </dependency> |
配置spring security
在spring中,配置和使用spring security,在不需要修改太多流程细节的情况下仅需声明好拦截规则,同时自定义验证过程中的主要实现接口(用户信息userdetails,用户信息获取服务userdetailsservice,验证工具authenticationprovider)即可。其余的流程将由spring自动接管,非常方便。
启动配置
在项目包下添加websecurityconfigureradapter
的具体实现类,实现spring security的启动配置
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
@configurable @enablewebsecurity @enableglobalmethodsecurity (prepostenabled = true ) //允许进入页面方法前检验 public class websecurityconfig extends websecurityconfigureradapter { @autowired private myauthenticationprovider provider; //自定义验证 @autowired private userdetailsservice userdetailsservice; //自定义用户服务 @autowired public void configauthentication(authenticationmanagerbuilder auth) throws exception{ } @override protected void configure(httpsecurity http) throws exception { http.authorizerequests() .antmatchers(staticparams.pathregx.noauth, staticparams.pathregx.css,staticparams.pathregx.js,staticparams.pathregx.img).permitall() //无需访问权限 .antmatchers(staticparams.pathregx.authadmin).hasauthority(staticparams.userrole.role_admin) //admin角色访问权限 .antmatchers(staticparams.pathregx.authuser).hasauthority(staticparams.userrole.role_user) //user角色访问权限 .anyrequest() //all others request authentication .authenticated() .and() .formlogin().loginpage( "/login" ).permitall() .and() .logout().permitall(); } @autowired public void configureglobal(authenticationmanagerbuilder auth) throws exception { //将验证过程交给自定义验证工具 auth.authenticationprovider(provider); } |
url拦截配置
url拦截配置可以在上一小节的websecurityconfig 中配置,但是此方法适用于大方向上的配置,具体的特殊路径也可以在@controller的注解中具体配置。
如下:
1
2
3
4
5
6
|
@responsebody @preauthorize ( "hasauthority('" +staticparams.userrole.role_admin+ "')" ) //这里可以指定特定角色的用户访问权限 @requestmapping (value = "adminrequire" , method = requestmethod.get) public string adminrequire(){ return "hello from web but you should be admin" ; } |
用户、角色表
在本文例子中用户和角色可以有一对多的关系因此可以将用户和角色分成两张表。有些例子将用户和权限写在同一张表上也是可以的。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*用户表*/ @entity @table(name = "user") public class systemuser { @id @column(name = "id") @generatedvalue(strategy = generationtype.auto) private long id; private string username; private string password; public systemuser(){} public systemuser(systemuser user){ this.username = user.getusername(); this.password = user.getpassword(); this.id = user.getid(); } public long getid() { return id; } public void setid(long id) { this.id = id; } public string getusername() { return username; } public void setusername(string username) { this.username = username; } public string getpassword() { return password; } public void setpassword(string password) { this.password = password; } } /*角色表*/ @entity @table (name = "user_role" ) public class userrole { @id @column (name = "id" ) @generatedvalue (strategy = generationtype.auto) private long id; private string role; private long userid; public long getid() { return id; } public void setid( long id) { this .id = id; } public string getrole() { return role; } public void setrole(string role) { this .role = role; } public long getuserid() { return userid; } public void setuserid( long userid) { this .userid = userid; } } |
自定义验证
在spring boot的spring security的教程中默认的用户名、密码、权限是在代码中指定的
1
2
3
4
5
6
|
@autowired public void configureglobal(authenticationmanagerbuilder auth) throws exception { auth .inmemoryauthentication() .withuser( "user" ).password( "password" ).roles( "user" ); } |
这显然是不符合应用需求的,所以我们需要提供自定义的authenticationprovider,并在上边代码中替换即可。在此之前,我们应该重写获取用户user和权限的方法。通过查询相关资料和api,方法提供如下:
自定义userdetails
userdetails代表了spring security的用户认证实体,带有用户名、密码、权限列表、过期特性等性质,可以自己声明类实现userdetails接口,如果不想自己声明,也可以用springsecurity的默认实现org.springframework.security.core.userdetails.user 本文例子中采用自定义类:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
public class myuserdetails extends systemuser implements userdetails{ private list<userrole> roles; public myuserdetails(systemuser user, list<userrole> roles){ super (user); this .roles = roles; } @override public collection<? extends grantedauthority> getauthorities() { if (roles == null || roles.size() < 1 ){ return authorityutils.commaseparatedstringtoauthoritylist( "" ); } stringbuilder commabuilder = new stringbuilder(); for (userrole role : roles){ commabuilder.append(role.getrole()).append( "," ); } string authorities = commabuilder.substring( 0 ,commabuilder.length()- 1 ); return authorityutils.commaseparatedstringtoauthoritylist(authorities); } @override public string getpassword() { return super .getpassword(); } @override public string getusername() { return super .getusername(); } @override public boolean isaccountnonexpired() { return true ; } @override public boolean isaccountnonlocked() { return true ; } @override public boolean iscredentialsnonexpired() { return true ; } @override public boolean isenabled() { return true ; } } |
自定义userdetailsservice
userdetailsservice提供了获取userdetails的方式,只要实现userdetailsservice接口即可,最终生成用户和权限共同组成的userdetails,在这里就可以实现从自定义的数据源中获取用户信息了:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
@service ( "myuserdetailsimpl" ) public class myuserdetailsservice implements userdetailsservice { @resource (name = "systemuserserviceimpl" ) private systemuserservice systemuserservice; @resource (name = "userroleserviceimpl" ) private userroleservice userroleservice; @override public userdetails loaduserbyusername(string username) throws usernamenotfoundexception { systemuser user; try { user = systemuserservice.findbyname(username); } catch (exception e) { throw new usernamenotfoundexception( "user select fail" ); } if (user == null ){ throw new usernamenotfoundexception( "no user found" ); } else { try { list<userrole> roles = userroleservice.getrolebyuser(user); return new myuserdetails(user, roles); } catch (exception e) { throw new usernamenotfoundexception( "user role select fail" ); } } } } |
自定义authenticationprovider
authenticationprovider 提供用户userdetails的具体验证方式,在这里可以自定义用户密码的加密、验证方式等等。因为博文主要讲的是如何引入spring security和如何自定义验证代码,所以这里为了简便,我直接采用明文比较方式:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
@component public class myauthenticationprovider implements authenticationprovider { @autowired private myuserdetailsservice userservice; /** * 自定义验证方式 */ @override public authentication authenticate(authentication authentication) throws authenticationexception { string username = authentication.getname(); string password = (string) authentication.getcredentials(); myuserdetails user = (myuserdetails) userservice.loaduserbyusername(username); if (user == null ){ throw new badcredentialsexception( "username not found." ); } //加密过程在这里体现 if (!password.equals(user.getpassword())) { throw new badcredentialsexception( "wrong password." ); } collection<? extends grantedauthority> authorities = user.getauthorities(); return new usernamepasswordauthenticationtoken(user, password, authorities); } @override public boolean supports( class <?> arg0) { return true ; } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/tzdwsy/article/details/50738043