Skip to content

Commit

Permalink
Update ShiroConfig.java
Browse files Browse the repository at this point in the history
  • Loading branch information
EightMonth committed Feb 29, 2024
1 parent cee8720 commit acf0713
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ public List<String> collectIgnoreAuthUrl(ApplicationContext context) {
Map<String, Object> controllers = context.getBeansWithAnnotation(RestController.class);
for (Object bean : controllers.values()) {
if (!(bean instanceof Advised)) {
return null;
continue;
}
Class<?> beanClass = ((Advised) bean).getTargetSource().getTarget().getClass();
RequestMapping base = beanClass.getAnnotation(RequestMapping.class);
Expand Down

0 comments on commit acf0713

Please sign in to comment.