From fe75d0132e69afbba5316c0477ed341aef9b834b Mon Sep 17 00:00:00 2001 From: yellowgg Date: Mon, 29 Jul 2019 15:30:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF->j2EE?= =?UTF-8?q?=E5=9F=BA=E7=A1=80=E7=AF=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/java/J2EE基础知识.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/java/J2EE基础知识.md b/docs/java/J2EE基础知识.md index fc9fac22..c1dff59b 100644 --- a/docs/java/J2EE基础知识.md +++ b/docs/java/J2EE基础知识.md @@ -59,7 +59,7 @@ Servlet接口定义了5个方法,其中**前三个方法与Servlet生命周期 - `void init(ServletConfig config) throws ServletException` - `void service(ServletRequest req, ServletResponse resp) throws ServletException, java.io.IOException` -- `void destory()` +- `void destroy()` - `java.lang.String getServletInfo()` - `ServletConfig getServletConfig()`