[pull] main from spring-projects:main#11
Conversation
Reviewer's GuideThis PR refactors the JobExplorerFactoryBean into a JDBC-specific extension, promotes protected visibility for subclassing, reorganizes DAO bean definitions under a jdbc subpackage (including test contexts and KeyGenerator extraction), and introduces the new JdbcJobExplorerFactoryBean. Class Diagram: Refactoring of JobExplorerFactoryBean and Introduction of JdbcJobExplorerFactoryBeanclassDiagram
class JobExplorerFactoryBean {
<<deprecated>>
# DataSource dataSource
# JdbcOperations jdbcOperations
# String tablePrefix
# DataFieldMaxValueIncrementer incrementer
# JobKeyGenerator jobKeyGenerator
# ExecutionContextSerializer serializer
# Charset charset
# ConfigurableConversionService conversionService
}
class JdbcJobExplorerFactoryBean {
+JdbcJobExplorerFactoryBean()
}
JobExplorerFactoryBean <|-- JdbcJobExplorerFactoryBean
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.1)
Can you help keep this open source service alive? 💖 Please sponsor : )
Summary by Sourcery
Introduce a dedicated JDBC-based factory bean for JobExplorer, deprecate the legacy implementation, and migrate DAO references to a new 'jdbc' subpackage across code, XML configurations, and tests.
New Features:
Enhancements:
Tests:
Chores: