Я изменяю свой home.route.ts следующим образом:
export const HOME_ROUTE: Route = {
path: '',
component: HomeComponent,
data: {
authorities: ['ROLE_USER', 'ROLE_ADMIN'],
pageTitle: 'home.title'
},
canActivate: [UserRouteAccessService]
};
, но в журнале терминала я вижу тонны ошибок через каждые миллисекунды, например:
2020-04-28 15:01:31.284 DEBUG 3588 --- [ XNIO-1 task-66] c.m.m.r.CustomAuditEventRepository : Exit: add() with result = null
2020-04-28 15:01:31.285 WARN 3588 --- [ XNIO-1 task-66] o.z.problem.spring.common.AdviceTraits : Unauthorized: Full authentication is required to access this resource
2020-04-28 15:01:31.286 WARN 3588 --- [ XNIO-1 task-66] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.springframework.security.authentication.InsufficientAuthenticationException: Full authentication is required to access
this resource]
Каков наилучший способ входа в систему перед доступом к пути ''?
Извините за мой базис c engli sh, мой первый язык - французский.