Add jakarta support through bytecode transformation #157
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.
Changes
This PR introduces comprehensive Jakarta EE support for the auth0-java-mvc-common library through Eclipse Transformer-based bytecode transformation. This enables the library to work seamlessly with both traditional Java EE (javax.servlet) and modern Jakarta EE (jakarta.servlet) environments without requiring separate codebases.
Key Changes:
Build System Enhancements:
src/testJakarta/
)performJakartaTransformation
andtransformJarToJakarta
Gradle tasksjakarta.servlet-api:5.0.0
Test Coverage:
JakartaCompatibilityTest.java
to verify Jakarta EE servlet API compatibilityHttpServletRequest
,HttpServletResponse
,HttpSession
, andCookie
Jakarta classestestJakarta
task to run Jakarta-specific tests with transformed bytecodeDistribution:
jakarta
classifier)Documentation:
Classes and Methods Added:
JakartaCompatibilityTest
class with Jakarta servlet API verification testsperformJakartaTransformation
,transformJarToJakarta
,testJakarta
build.gradle
Endpoints/APIs:
mvc-auth-commons:1.12.0:jakarta
References
Testing
This change has been thoroughly tested to ensure compatibility across both servlet environments:
This change adds test coverage
JakartaCompatibilityTest
with comprehensive Jakarta servlet API testsThis change has been tested on the latest version of Java or why not
Manual Testing:
Checklist