Last active
August 29, 2015 14:03
-
-
Save masazdream/594ad363cd0114f21322 to your computer and use it in GitHub Desktop.
jersey用web.xml
This file contains hidden or 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
| <web-app xmlns="http://java.sun.com/xml/ns/javaee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/javaee | |
| http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" | |
| version="3.0" | |
| metadata-complete="true"> | |
| <servlet> | |
| <servlet-name>SC Recognize Your Issue Service</servlet-name> | |
| <servlet-class> | |
| com.sun.jersey.spi.container.servlet.ServletContainer | |
| </servlet-class> | |
| <init-param> | |
| <param-name>com.sun.jersey.config.property.packages</param-name> | |
| <param-value>jp.masazdream.scryi.server.api</param-value> | |
| </init-param> | |
| <load-on-startup>1</load-on-startup> | |
| </servlet> | |
| <servlet-mapping> | |
| <servlet-name>SC Recognize Your Issue Service</servlet-name> | |
| <url-pattern>/api/*</url-pattern> | |
| </servlet-mapping> | |
| </web-app> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment