You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A circular dependency error is occurring during application startup due to the autowiring of the UserService in the constructor of the JWT Auth filter. This prevents the application from starting correctly.
Expected Behavior
The JWT Auth filter should initialize and operate without encountering any circular dependency errors during application startup.
Actual Behavior
A circular dependency error occurs, preventing the application from starting. The error is likely related to the autowiring of UserService within the JWT Auth filter.
Additional Context
This issue happens consistently on application startup.
The circular dependency is likely caused by the JWT Auth filter depending on UserService, which might also depend on the security configuration that includes the JWT Auth filter.
The text was updated successfully, but these errors were encountered:
Issue Description
A circular dependency error is occurring during application startup due to the autowiring of the UserService in the constructor of the JWT Auth filter. This prevents the application from starting correctly.
Expected Behavior
The JWT Auth filter should initialize and operate without encountering any circular dependency errors during application startup.
Actual Behavior
A circular dependency error occurs, preventing the application from starting. The error is likely related to the autowiring of UserService within the JWT Auth filter.
Additional Context
The text was updated successfully, but these errors were encountered: