You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
________________________________
From: Stefano Buliani <notifications@github.com>
Sent: Thursday, July 16, 2020 5:46:19 PM
To: awslabs/aws-serverless-java-container <aws-serverless-java-container@noreply.github.com>
Cc: argenstijn <argenstijn@hotmail.com>; Mention <mention@noreply.github.com>
Subject: Re: [awslabs/aws-serverless-java-container] Small improvement on Jersey implementation (#366)
Thanks for the tip @argenstijn<https://github.com/argenstijn> - I'll make the updates in the archetype and samples for the next release.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#366 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AAA75LADXVV3RH2E24WVHHDR34OEXANCNFSM4O3WRDNQ>.
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: