antMatchers & permitAll doesn't let me visit the REST point
问题 The following line doesn't let me visit GET: /api/topics without a bearer token. It works if I apply a token. Am I missing something? Isn't permitAll supposed to do that? .antMatchers("/api/topics/**").permitAll() By the way, I tried with /api/topics** and it didn't work as well. Error: { "error": "unauthorized", "error_description": "Full authentication is required to access this resource" } Result without a token (the broken part). I want it to let me through. Result with a token. It works