I am following this blog post to create Angular and Spring Boot app with Okta integration for user authentication and authorization. I have added an interceptor that sends access token with each request to Spring Boot app.
Do I need to make use of JWT after getting access token so that Spring Boot app does not have to parse the access token in each request from Angular and make requests to authorization server each time adding latency?
If yes, is there an example of how to use interceptor with access token in Angular once and get JWT from Spring Boot after authentication?