Advertisement
Guest User

web.xml

a guest
Apr 25th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://java.sun.com/xml/ns/javaee"
  4. xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  5. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  6. id="WebApp_ID" version="2.5">
  7.  
  8. <servlet>
  9. <servlet-name>SstServlet</servlet-name>
  10. <servlet-class>net.cfday.rwise.sstservlet.ElasticSearch_Servlet</servlet-class>
  11. </servlet>
  12.  
  13. <servlet-mapping>
  14. <servlet-name>SstServlet</servlet-name>
  15. <url-pattern>/SstRequest</url-pattern>
  16. </servlet-mapping>
  17.  
  18. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement