JavaWeb——Servlet配置

浏览器不能直接访问Servlet文件,只能通过映射的方式来间接访问Servlet,映射需要开发者手动配置,有两种配置方式。

xml这种方法是开发者初级阶段一般都要学的,但是注解的方式胜在简单快捷,二者结果完全一致。

目录

    • 1.基于xml文件的配置方式
      • web.xml
      • login.java
      • 代码详解
      • 测试
    • 2.基于注解的方式

1.基于xml文件的配置方式

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
  <display-name>bysj</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index

你可能感兴趣的:(JavaWeb,java,java,java-ee,服务器)