How to make spring boot never issue session cookie?
Have you tried using SessionCreationPolicy.STATELESS. There is a subtle difference between STATELESS and NEVER in the spring docs: STATELESS: Spring Security will never create an HttpSession and it will never use it to obtain the SecurityContext. NEVER: Spring Security will never create an HttpSession, but will use the HttpSession if it already exists. So I … Read more