작성
·
479
·
수정됨
0
resourcesList.forEach(re -> {
List<ConfigAttribute> configAttributeList = new ArrayList<>();
re.getRoleSet()
.forEach(ro -> {
configAttributeList.add(new SecurityConfig(ro.getRoleName()));
result.put(new AntPathRequestMatcher(re.getResourceName()), configAttributeList);
});
});
가 아니라
resourcesList.forEach(re -> {
List<ConfigAttribute> configAttributeList = new ArrayList<>();
re.getRoleSet()
.forEach(ro -> {
configAttributeList.add(new SecurityConfig(ro.getRoleName()));
});
result.put(new AntPathRequestMatcher(re.getResourceName()), configAttributeList);
});
이것이 강사님의 의도한바가 아니었을까 생각이 드는데
제가 잘못 짚은걸까요??
참고: 5) 웹 기반 인가처리 DB 연동 - FilterInvocationSecurityMetadataSource (2)