Skip to content

Commit

Permalink
author
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangkai23 committed Jul 15, 2020
1 parent 6fc38b6 commit 36079d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apache-tomcat-9.0.36-src/java/mywebapp/MyServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
import java.io.PrintWriter;

/**
* @author: XiaMu
* @create: 2020-07-09 14:23
* @author XiaMu
* @date 2020-07-09 14:23
**/
@WebServlet("/myServlet")
public class MyServlet extends HttpServlet {

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
PrintWriter pw= resp.getWriter();
PrintWriter pw = resp.getWriter();
pw.println("hello MyServlet");
}

Expand Down

0 comments on commit 36079d7

Please sign in to comment.