property.jsp 440 B

12345678910111213141516171819202122
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: 武恒
  4. Date: 2023/2/18
  5. Time: 14:29
  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>Bean对象自动赋值</title>
  12. </head>
  13. <body>
  14. <jsp:useBean id="User" class="com.lovecoding.study.domian.User" />
  15. <jsp:setProperty name="User" property="*" />
  16. <%=User%>
  17. </body>
  18. </html>