- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章解决springboot+shiro 权限拦截失效的问题由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
最近因为项目需要,接触了shiro。新手入门 。
发现权限拦截失效, 。
一直以为是以为授权和DB的问题 。
研究了一个下午,终于发现了问题所在 。
我的访问路径没有写前面的斜杠!!,而DB中的资源路径是可以省略的,崩溃了吧 。
但是问题来了,为什么在其他地方可以忽略掉前面的小斜杠呢?
经过几分钟的捣鼓发现,在springboot中,不论是thymeleaf的模板也好(我用的thymeleaf),还是后端代码也好,底层会自动补全这个斜杠 。
问题解决!! 。
补充知识:SpringBoot整合shiro的一个完整的小案例 。
SpringBoot整合配置版的shiro很简单,逻辑清 。
首先在pom.xml的配置如下,shiro使用缓存ehcache 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<
dependency
>
<
groupId
>net.sf.ehcache</
groupId
>
<
artifactId
>ehcache</
artifactId
>
<
version
>2.10.4</
version
>
</
dependency
>
<!-- shiro spring. -->
<
dependency
>
<
groupId
>org.apache.shiro</
groupId
>
<
artifactId
>shiro-core</
artifactId
>
<
version
>1.2.2</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.shiro</
groupId
>
<
artifactId
>shiro-spring</
artifactId
>
<
version
>1.2.2</
version
>
</
dependency
>
<!-- shiro ehcache -->
<
dependency
>
<
groupId
>org.apache.shiro</
groupId
>
<
artifactId
>shiro-ehcache</
artifactId
>
<
version
>1.2.2</
version
>
</
dependency
>
|
接着配置shiro 。
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
@Configuration
public
class
ShiroConfig {
@Bean
public
ShiroFilterFactoryBean shirFilter(DefaultWebSecurityManager securityManager) {
ShiroFilterFactoryBean shiroFilter =
new
ShiroFilterFactoryBean();
// 必须设置 SecurityManager
shiroFilter.setSecurityManager(securityManager);
// 拦截器
Map<String, String> filterChainDefinitionMap =
new
LinkedHashMap<String, String>();
// 设置login URL
shiroFilter.setLoginUrl(
"/login"
);
// 登录成功后要跳转的链接
shiroFilter.setSuccessUrl(
"/main"
);
filterChainDefinitionMap.put(
"/webjars/**"
,
"anon"
);
filterChainDefinitionMap.put(
"/druid/**"
,
"anon"
);
//静态资源的处理
filterChainDefinitionMap.put(
"/js/**"
,
"anon"
);
filterChainDefinitionMap.put(
"/css/**"
,
"anon"
);
filterChainDefinitionMap.put(
"/asserts/**"
,
"anon"
);
filterChainDefinitionMap.put(
"/fonts/**"
,
"anon"
);
filterChainDefinitionMap.put(
"/images/**"
,
"anon"
);
// 退出系统的过滤器
filterChainDefinitionMap.put(
"/logout"
,
"logout"
);
filterChainDefinitionMap.put(
"/login"
,
"anon"
);
filterChainDefinitionMap.put(
"/kaptcha"
,
"anon"
);
filterChainDefinitionMap.put(
"/**"
,
"authc"
);
shiroFilter.setFilterChainDefinitionMap(filterChainDefinitionMap);
return
shiroFilter;
}
@Bean
public
HashedCredentialsMatcher hashedCredentialsMatcher() {
HashedCredentialsMatcher hashedCredentialsMatcher =
new
HashedCredentialsMatcher();
hashedCredentialsMatcher.setHashAlgorithmName(
"MD5"
);
hashedCredentialsMatcher.setHashIterations(
1024
);
return
hashedCredentialsMatcher;
}
@Bean
public
ShiroRealm shiroRealm(HashedCredentialsMatcher hashedCredentialsMatcher) {
ShiroRealm shiroRealm =
new
ShiroRealm();
shiroRealm.setCredentialsMatcher(hashedCredentialsMatcher);
return
shiroRealm;
}
//shiro使用缓存ehcachae
@Bean
public
EhCacheManager ehCacheManager() {
EhCacheManager ehCacheManager =
new
EhCacheManager();
ehCacheManager.setCacheManagerConfigFile(
"classpath:ehcache.xml"
);
return
ehCacheManager;
}
@Bean
(
"sessionManager"
)
public
SessionManager sessionManager(){
DefaultWebSessionManager sessionManager =
new
DefaultWebSessionManager();
sessionManager.setSessionValidationSchedulerEnabled(
true
);
sessionManager.setSessionIdCookieEnabled(
true
);
return
sessionManager;
}
@Bean
(
"securityManager"
)
public
DefaultWebSecurityManager securityManager(ShiroRealm shiroRealm, SessionManager sessionManager) {
DefaultWebSecurityManager securityManager =
new
DefaultWebSecurityManager();
securityManager.setRealm(shiroRealm);
securityManager.setSessionManager(sessionManager);
return
securityManager;
}
@Bean
(
"lifecycleBeanPostProcessor"
)
public
LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
return
new
LifecycleBeanPostProcessor();
}
@Bean
public
DefaultAdvisorAutoProxyCreator defaultAdvisorAutoProxyCreator() {
DefaultAdvisorAutoProxyCreator proxyCreator =
new
DefaultAdvisorAutoProxyCreator();
proxyCreator.setProxyTargetClass(
true
);
return
proxyCreator;
}
@Bean
public
AuthorizationAttributeSourceAdvisor authorizationAttributeSourceAdvisor(SecurityManager securityManager) {
AuthorizationAttributeSourceAdvisor advisor =
new
AuthorizationAttributeSourceAdvisor();
advisor.setSecurityManager(securityManager);
return
advisor;
}
}
|
在配置中提到的realm如下配置 。
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
|
public
class
ShiroRealm
extends
AuthorizingRealm {
@Autowired
private
UserService userService;
@Override
protected
AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token)
throws
AuthenticationException {
UsernamePasswordToken upToken = (UsernamePasswordToken) token;
// 取出表单用户名
String username = upToken.getUsername();
// 查询是否有该用户
if
(userService.getByName(username) ==
null
) {
throw
new
UnknownAccountException(
"用户不存在!"
);
}
// 靠用户名从数据库查询该用户的全部信息
User user = userService.getByName(username);
// 传入:用户名,加密后的密码,盐值,该realm的名字,加密算法和加密次数在已经在配置文件中指定
SimpleAuthenticationInfo info =
new
SimpleAuthenticationInfo(username, user.getPassword(),
ByteSource.Util.bytes(username), getName());
return
info;
}
@Override
protected
AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {
// 1. 从 PrincipalCollection 中来获取登录用户的信息
Object principal = principals.getPrimaryPrincipal();
// 2. 利用登录的用户的信息来..当前用户的角色或权限(可能需要查询数据库)
Set<String> roles =
new
HashSet<String>();
roles.add(
"user"
);
if
(
"admin"
.equals(principal)) {
roles.add(
"admin"
);
}
// 3. 创建 SimpleAuthorizationInfo, 并设置其 reles 属性
SimpleAuthorizationInfo info =
new
SimpleAuthorizationInfo(roles);
// 4. 返回 SimpleAuthorizationInfo 对象.
return
info;
}
}
|
由于我做的平台只有一个管理员就不写注册了,这时手动算出一个admin用户的密码 。
1
2
3
4
5
|
public
static
void
main(String[] args) {
Object result =
new
SimpleHash(
"MD5"
,
"123456"
,ByteSource.Util.bytes(
"admin"
),
1024
);
System.out.println(result);
}
|
最后写登录的Controller 。
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
|
@Controller
public
class
LoginController {
// 处理登录逻辑
@PostMapping
(
"/login"
)
public
String login(String username, String password, String kaptcha, HttpSession session,
Map<String, Object> map) {
Subject currentUser = SecurityUtils.getSubject();
if
(!currentUser.isAuthenticated()) {
// 把用户名和密码封装为 UsernamePasswordToken 对象
UsernamePasswordToken token =
new
UsernamePasswordToken(username, password);
// 设置为rememberme
token.setRememberMe(
true
);
try
{
// 执行登录.
currentUser.login(token);
}
// 所有认证时异常的父类
catch
(AuthenticationException ae) {
map.put(
"password"
,
"输入的用户名或密码错误"
);
log.info(
"登录失败: "
+ ae.getMessage());
return
"login"
;
}
}
if
(!session.getAttribute(
"code"
).equals(kaptcha)) {
map.put(
"kaptcha"
,
"输入的验证码错误"
);
return
"login"
;
}
session.setAttribute(
"loginUser"
,
"user"
);
return
"main"
;
}
}
|
以上这篇解决springboot+shiro 权限拦截失效的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://blog.csdn.net/qq_41247335/article/details/105319266 。
最后此篇关于解决springboot+shiro 权限拦截失效的问题的文章就讲到这里了,如果你想了解更多关于解决springboot+shiro 权限拦截失效的问题的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
Android 权限(您在 list 中请求并在安装时显示的权限)是否与 root 用户在 root 手机上获得的 linux 权限相同? 更确切地说:如果我的手机上有 root 权限并且我有一个可以
我经常读到 VIEW 的一个目的是安全性:允许一些用户访问基础表,而其他用户只允许访问派生 View 。考虑到这一点,我设计了几个向外部用户提供受限数据集的 View 。 一切都很好,但在实践中这是行
在 Facebook API v2.3 中,“user_posts”听起来像是“user_status”的超集。是这样吗?如果我已经有“user_posts”,为什么还需要“user_status”?
在为 BLUETOOTH_CONNECT 请求运行时权限后,android 12 崩溃了,我在 Samsung Android 12 设备中遇到了这个问题。在其他低于 Android 12 的设备上运
请理解这个问题可能有点头晕,因为这是我第一次提问。另外,请理解语法可能很奇怪,因为我不擅长英语并使用翻译。 我是一个在 Android 工作室中使用 java 制作应用程序的人。 尝试使用蓝牙时出现连
我刚刚将我的 Magento 商店从 cPanel 移动到 DirectAdmin (Centos)。 我的问题现在是权限。以前在 cPanel 上,所有文件夹都设置为 755 和文件 644。这很好
我希望在我的 Django 项目中获得更细粒度的权限,但无法决定使用哪个应用程序。 我所拥有的是这样的: class Item(models.Model): name = models.Cha
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我们已经设置了一个 Github 应用程序,以便它使用 Github API 自动为另一个个人 Github 用户创建一个存储库。现在我们遇到了一个问题,不是每个人都想让我们完全读取他们所有的私有(p
假设我有一个网站想要访问 Facebook 的用户帐户信息。通常,用户会获得网站要求的所有权限,并且可以整体上允许或拒绝这些权限。 是否可以让用户选择(例如,通过授权屏幕上每个权限的复选框)他想授予网
平台下载地址:https://gitee.com/alwaysinsist/edp 权限介绍 权限实际上就是谁有权使用或是访问什么,这里的“谁”可以视作"授权对象",&qu
playstore 给我发这个消息 We've detected that your app contains the requestLegacyExternalStorage flag in the
我可以在没有 sudo 的情况下运行 docker,但有时它会再次请求权限,我无法在 VS 代码中附加容器 Got permission denied while trying to connect
我正在尝试在 Ubuntu 中的可执行文件上运行 gdb。但是,当我尝试在 gdb 中运行 run 时,出现以下错误。 /vagrant/unit_test: cannot execute: Perm
我的应用程序工作了一年,然后对 instagram 的 API 调用停止返回任何数据。 我使用以下 instagram 端点: https://api.instagram.com/v1/media/s
我使用 TFS 2012 并希望为 TFS 用户组设置以下权限。 允许创建新问题项。 拒绝创建新的任务项。 拒绝更改他的任务项,只能更改提醒时间、描述和状态。并且不能更改分配的用户、优先级和迭代。 我
我有一个谷歌计算引擎实例,我使用与我的 glcoud 帐户关联的 SSH key 通过 SFTP 连接到该实例。但是,我无法将任何文件上传到/var/www 目录,尽管我可以读取目录列表。/var/w
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
我不确定如何正确处理以下情况: 我的程序通过安装程序安装 我在应用程序文件夹中创建SQLite数据库(程序启动时) 在某些配置中,我收到“ Attemt写入只读数据库”错误。这是权限问题,现在我通过将
我是一名优秀的程序员,十分优秀!