Created
August 15, 2014 10:23
-
-
Save anlcan/0303060a0bdb17773ec8 to your computer and use it in GitHub Desktop.
minimum requirement for javax.servlet container with jersey
This file contains 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
<servlet> | |
<servlet-name>Jersey</servlet-name> | |
<servlet-class>com.sun.jersey.server.impl.container.servlet.ServletAdaptor</servlet-class> | |
<init-param> | |
<param-name>javax.ws.rs.Application</param-name> | |
<param-value>com.telera.securepayment.rest.PaymentApplication</param-value> | |
</init-param> | |
<init-param> | |
<param-name>com.sun.jersey.config.feature.DisableWADL</param-name> | |
<param-value>true</param-value> | |
</init-param> | |
</servlet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment