我正在使用 primefaces 进行 Jsf2 项目。我用过这样的东西: Bean 类:
Student 它是具有 id 和 name 的主要 Bean 类。我又创建了两个 bean 类。技术学生和非技术学生都在扩展学生 bean 课程。我的问题是我做对了吗?是正确的设计吗?我想保持 id 和 name 通用,可在技术学生和非技术学生页面中重复使用
class student{
id, name
getter and setter
}
class Technicalstudent extends student{
technicaldetails,
get and set
}
class NonTechnicalstudent extends student{
nontechnicaldetails
get and set
}