web.xml 663 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
  5. version="4.0">
  6. <servlet>
  7. <servlet-name>parameterServlet</servlet-name>
  8. <servlet-class>com.xbw.java.ParameterServlet</servlet-class>
  9. </servlet>
  10. <servlet-mapping>
  11. <servlet-name>parameterServlet</servlet-name>
  12. <url-pattern>/parameterServlet</url-pattern>
  13. </servlet-mapping>
  14. </web-app>