servlet

2021年4月19日

  1. <!-- web.xml 配置 -->
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
  6. http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
  7. version="4.0"
  8. metadata-complete="true">
  9. <!--注册servlet-->
  10. <servlet>
  11. <servlet-name>hello</servlet-name>
  12. <servlet-class>HelloWorld</servlet-class>
  13. </servlet>
  14. <!--servlet的请求路径-->
  15. <servlet-mapping>
  16. <servlet-name>hello</servlet-name>
  17. <!-- btlord/hello 其中 btlord 是默认的虚拟目录 -->
  18. <url-pattern>/hello</url-pattern>
  19. </servlet-mapping>
  20. </web-app>