Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces OpenAPI documentation support to the backend and adjusts project dependencies and security configuration accordingly. The main changes include adding the
springdoc-openapidependency, updating the Spring Boot version, and allowing unauthenticated access to API documentation endpoints.Dependency and Documentation Enhancements:
springdoc-openapi-starter-webmvc-uidependency (version 2.5.0) to enable OpenAPI (Swagger) documentation for the API.3.5.5to3.3.0inpom.xml, likely for compatibility withspringdoc-openapi.Security Configuration Updates:
SecurityConfig.javato permit unauthenticated access to/swagger-ui.html,/swagger-ui/**, and/v3/api-docs/**endpoints, allowing public access to API documentation.