• Web23_Listener


    记得在web.xml配置<listener-class>监听器的Copy Qualified Name复制类全名</listener-class>

    1 <listener-class>com.itheima.birthday.BirthdayListener</listener-class>

    记得在web.xml配置<listener-class>监听器的Copy Qualified Name复制类全名</listener-class>

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     3     xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     4     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
     5     id="WebApp_ID" version="3.1">
     6     <display-name>WEB23</display-name>
     7     <listener>
     8 
     9         <listener-class>com.itheima.birthday.BirthdayListener</listener-class>
    10 
    11     </listener>
    12     <welcome-file-list>
    13         <welcome-file>index.html</welcome-file>
    14         <welcome-file>index.htm</welcome-file>
    15         <welcome-file>index.jsp</welcome-file>
    16         <welcome-file>default.html</welcome-file>
    17         <welcome-file>default.htm</welcome-file>
    18         <welcome-file>default.jsp</welcome-file>
    19     </welcome-file-list>
    20 </web-app>
  • 相关阅读:
    mysql的sql执行计划
    JMX
    用 Cobertura 测量测试覆盖率
    javap反汇编的使用
    Java ASM 技术简介
    基于Java Instrument的Agent实现
    浮动的同级盒子顶对齐
    子绝父相布局
    相对定位,绝对定位和固定定位
    嵌套的定位盒子如何居中?
  • 原文地址:https://www.cnblogs.com/denggelin/p/7258741.html
Copyright © 2020-2023  润新知