modelDemo.jsp 364 B

1234567891011121314151617181920
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: lc
  4. Date: 2023-03-26
  5. Time: 上午 10:43
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>Title</title>
  12. </head>
  13. <body>
  14. <h1>
  15. <%
  16. out.print( request.getAttribute("msg") );
  17. %>
  18. </h1>
  19. </body>
  20. </html>