We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serverless Java Container version: 1.5.1
1.5.1
Implementations: Jersey
Jersey
Framework version: 2.31
2.31
Frontend service: REST API / HTTP API / ALB
REST API / HTTP API / ALB
Deployment method: `CDK'
It's not better to set these properties to true in order to speed up jersey startup a little bit:
property(ServerProperties.FEATURE_AUTO_DISCOVERY_DISABLE,true); property(ServerProperties.WADL_FEATURE_DISABLE,true); property(ServerProperties.METAINF_SERVICES_LOOKUP_DISABLE,true); property(ServerProperties.BV_FEATURE_DISABLE,true); property(ServerProperties.JSON_PROCESSING_FEATURE_DISABLE,true); property(ServerProperties.MOXY_JSON_FEATURE_DISABLE,true);
The text was updated successfully, but these errors were encountered:
Thanks for the tip @argenstijn - I'll make the updates in the archetype and samples for the next release.
Sorry, something went wrong.
Jersey startup time improvements (#366)
b009775
Finally added the properties.
deki
No branches or pull requests
Serverless Java Container version:
1.5.1
Implementations:
Jersey
Framework version:
2.31
Frontend service:
REST API / HTTP API / ALB
Deployment method: `CDK'
Scenario
It's not better to set these properties to true in order to speed up jersey startup a little bit:
property(ServerProperties.FEATURE_AUTO_DISCOVERY_DISABLE,true);
property(ServerProperties.WADL_FEATURE_DISABLE,true);
property(ServerProperties.METAINF_SERVICES_LOOKUP_DISABLE,true);
property(ServerProperties.BV_FEATURE_DISABLE,true);
property(ServerProperties.JSON_PROCESSING_FEATURE_DISABLE,true);
property(ServerProperties.MOXY_JSON_FEATURE_DISABLE,true);
The text was updated successfully, but these errors were encountered: