If you follow the framework, the browser will report multiple 403 when logging in with multiple windows.

Check the com.ruoyi.framework.config.SecurityConfig.java file to see if the login request setting allows anonymous access, that is, .anonymous, as shown in the figure below.
Insert image description here
Just change it to .permitAll.
Insert image description here
Anonymous allows anonymous access, and cannot be accessed with a token.

permitAll allows access to both anonymous and non-anonymous persons, that is, it can be accessed with or without a token.

Guess you like

Origin blog.csdn.net/qq_39312230/article/details/127763143