docs: update documentation to reflect Jackson 3 + JAXB annotations decision#60
Merged
Merged
Conversation
…approach chosen in PR #59: using Jackson 3 as the XML serialization engine while retaining JAXB annotations on DTOs. Changes: - MULTI_PHASE_SCHEMA_COMPLIANCE_PLAN.md: Updated technology stack, DTO marshalling approach, and test requirements to document Jackson 3 with JAXB annotations (via jackson-module-jakarta-xmlbind-annotations) - DTO_APPROACH_COMPARISON.md: Added 'DECISION MADE' status, comprehensive rationale section, and implementation details from PR #59 - PR50_MULTI_PHASE_IMPACT.md: Added resolution section documenting the final decision and updated documentation references The hybrid approach combines: - Jackson 3 XmlMapper (tools.jackson.dataformat:jackson-dataformat-xml:3.0.3) - JAXB annotations (jakarta.xml.bind.annotation.*) - Bridge module (jackson-module-jakarta-xmlbind-annotations:3.0.3) This provides Jackson 3's modern performance with JAXB's proven XML schema compliance, requiring zero annotation rewrites. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <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
Updates all project documentation to reflect the hybrid approach implemented in PR #59: Jackson 3 XmlMapper as the serialization engine with JAXB annotations on DTOs.
Changes
Rationale
The hybrid approach chosen in PR #59 combines:
tools.jackson.dataformat:jackson-dataformat-xml:3.0.3)jakarta.xml.bind.annotation.*)jackson-module-jakarta-xmlbind-annotations:3.0.3)This provides Jackson 3's modern performance and Spring Boot 4.0 readiness while maintaining JAXB's proven XML schema compliance.
Related PRs
Checklist
🤖 Generated with Claude Code