DatStorm

Untitled

Mar 1st, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
  2. <servlet>
  3. <servlet-name>jersey-servlet</servlet-name>
  4. <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
  5. <init-param>
  6. <param-name>jersey.config.servlet.provider.webapp</param-name>
  7. <param-value>true</param-value>
  8. </init-param>
  9. <load-on-startup>1</load-on-startup>
  10. </servlet>
  11. <servlet-mapping>
  12. <servlet-name>jersey-servlet</servlet-name>
  13. <url-pattern>/rest/*</url-pattern>
  14. </servlet-mapping>
  15. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment