fix(persistence): replace in-memory stores with JDBC-backed repositories#4
Merged
stupidly-logical merged 2 commits intomainfrom Apr 4, 2026
Merged
fix(persistence): replace in-memory stores with JDBC-backed repositories#4stupidly-logical merged 2 commits intomainfrom
stupidly-logical merged 2 commits intomainfrom
Conversation
5 tasks
- Use JdbcRegisteredClientRepository for client registrations (survives restart) - Use JdbcOAuth2AuthorizationService for tokens and authorization codes - Use JdbcOAuth2AuthorizationConsentService for user consents - Use JdbcUserDetailsManager for user accounts - Configure spring.sql.init to load Spring Security schemas on startup - Add spring.jpa.defer-datasource-initialization=true so schemas init before Hibernate - Seed test data only when not already present Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
a79cf0a to
12b5d7a
Compare
… errors spring.sql.init schemas (users, registered-client, etc.) are not yet applied when @bean factory methods run. Moving userExists/findByClientId calls into ApplicationRunner beans ensures they execute after full context initialization, including spring.sql.init. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
InMemoryRegisteredClientRepositorywithJdbcRegisteredClientRepositoryJdbcOAuth2AuthorizationServiceandJdbcOAuth2AuthorizationConsentServiceInMemoryUserDetailsManagerwithJdbcUserDetailsManagerspring.sql.initto load all required Spring Security JDBC schemas on startupFixes
Issues #7, #8, #9 from the production checklist.
Test plan
🤖 Generated with Claude Code