<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>$Title$</title>
  </head>
  <body>

     <%
      String title="关于我们";
      String body="这是学习JAVA技术的社区;<br>访问https://blog.csdn.net/weixin_39593940";
      Date now=new Date();
      String day=String.format("%tY年%tm月%td日",now,now,now);

      out.print("<h2>"+title+"</h2>");
      out.print(body);
      out.print("<p>"+day+"</p>");
     %>

  </body>
</html>