JavaBean實體類
阿新 • • 發佈:2022-01-02
JavaBean
就是實體類
JavaBean有特定的寫法:
- 必須要有一個無參構造
- 屬性必須私有化
- 必須有對應的get/set方法
一般用來和資料庫的欄位做對映:ORM
ORM:物件關係對映
- 表----->類
- 欄位---->屬性
- 行記錄---->物件
例如:
id | name | age | address |
---|---|---|---|
1 | 1 | 12 | 西安 |
2 | 2 | 121 | 西安 |
3 | 3 | 12 | 西安 |
class People{ private int id; private String name; private int age; private String address; } class A{ new people(1,"1",12,"西安"); new people(2,"2",121,"西安"); new people(3,"3",12,"西安"); }
jsp標籤也可以對實體類建立物件並賦值:
樹越是嚮往高處的光亮,它的根就越要向下,向泥土向黑暗的深處。<jsp:useBean id="people" class="com.kuang.pojo.People" scope="page"/> <jsp:setProperty name="people" property="id" value="1"/> <jsp:setProperty name="people" property="name" value="1"/> <jsp:setProperty name="people" property="age" value="12"/> <jsp:setProperty name="people" property="address" value="西安"/> <%--獲取物件中的值--%> id:<jsp:getProperty name="people" property="id"/> 姓名:<jsp:getProperty name="people" property="name"/> 年齡:<jsp:getProperty name="people" property="age"/> 地址:<jsp:getProperty name="people" property="address"/>