一个实体类,一个可复用的类。
JavaBean在MVC设计模型中是model,又称模型层,在一般的程序中,我们称它为数据层,就是用来设置数据的属性和一些行为。
一般用来和数据库的字段做映射 ORM;
ORM :对象关系映射
people表
id | name | age | address |
---|---|---|---|
1 | XX1号 | 3 | 西安 |
2 | XX2号 | 18 | 西安 |
3 | XX3号 | 100 | 西安 |
class People{ private int id; private String name; private int id; private String address; } class A{ new People(1,"xx1号",3,"西安"); new People(2,"xx2号",3,"西安"); new People(3,"xx3号",3,"西安"); }
内容参考:https://www.bilibili.com/video/BV12J411M7Sj