摘要: ServletConfig ServletConfig是web.xml中,Servlet的初始化参数对象(每个Servlet都各自拥有至少一个ServletConfig对象) web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns= 阅读全文
posted @ 2023-12-23 22:29 rowbed 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Servlet继承关系树: Servlet接口 查看Servlet源码 public interface Servlet { void init(ServletConfig var1) throws ServletException; ServletConfig getServletConfig() 阅读全文
posted @ 2023-12-23 17:59 rowbed 阅读(7) 评论(0) 推荐(0) 编辑