作者 朱兆平

处理匿名者访问方法转json对象异常问题

... ... @@ -172,20 +172,27 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered {
String redisKey = "ROLE_anonymous_routers";
String json = stringRedisTemplate.opsForValue().get(redisKey);
if(json!=null && !json.isEmpty()){
JSONObject jsonObject = JSONObject.parseObject(json);
List<ROLE> roleList = JSONObject.toJavaObject(jsonObject,List.class);
if(roleList!=null && !roleList.isEmpty()){
for (ROLE role: roleList){
List<PERMISSION> permissionList= role.getPermissions();
if(permissionList!=null && !permissionList.isEmpty()){
for (PERMISSION permission : permissionList) {
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
return true;
}
}
}
try{
JSONObject jsonObject = JSONObject.parseObject(json);
List<ROLE> roleList = JSONObject.toJavaObject(jsonObject,List.class);
if(roleList!=null && !roleList.isEmpty()){
for (ROLE role: roleList){
List<PERMISSION> permissionList= role.getPermissions();
if(permissionList!=null && !permissionList.isEmpty()){
for (PERMISSION permission : permissionList) {
if (pathMatcher.match(permission.getUrl(), request.getPath().toString())) {
return true;
}
}
}
}
}
}catch (Exception e){
e.printStackTrace();
return false;
}
}
return false;
}
... ...
${AnsiColor.YELLOW}
##################*CETC-TIANBO*#########################
.::::.
.::::::::.
:::::::::::
..:::::::::::'
'::::::::::::'
.::::::::::
'::::::::::::::..
..::::::::::::.
``::::::::::::::::
::::``:::::::::' .:::.
::::' ':::::' .::::::::.
.::::' :::: .:::::::'::::.
.:::' ::::: .:::::::::' ':::::.
.::' :::::.:::::::::' ':::::.
.::' ::::::::::::::' ``::::.
...::: ::::::::::::' ``::.
```` ':. ':::::::::' ::::..
'.:::::' ':'````..
#########################################################
==================================================
Application Info:${application.title}
ver:${application.version}
Powered by:Spring Boot ${spring-boot.version}
\ No newline at end of file
... ...