12345678910111213141516171819202122 |
- <%--
- Created by IntelliJ IDEA.
- User: 武恒
- Date: 2023/2/18
- Time: 14:29
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Bean对象自动赋值</title>
- </head>
- <body>
- <jsp:useBean id="User" class="com.lovecoding.study.domian.User" />
- <jsp:setProperty name="User" property="*" />
- <%=User%>
- </body>
- </html>
|