class Department{ // 部门信息
private int did ; // 部门编号
private String dname ; // 部门名称
public Department(int did,String dname) {
this.did = did ;
this.dname = dname ;
}
public String getInfo() {
return "【DEPARTMENT】id = " + this.did + ",name = " + this.dname ;
}
}
class Employee{ // 员工信息
private int eid ; // 员工工号
private String ename ; // 员工姓名
public Employee(int eid,String ename) {
this.eid = eid ;
this.ename = ename ;
}
public String getInfo() {
return "【EMPLOYEE】id = " + this.eid + ",name = " + this.ename ;
}
}
class Role{ // 角色信息
private int rid ;
private String title ;
public Role(int rid,String title) {
this.rid = rid ;
this.title = title ;
}
public String getInfo() {
return "【ROLE】id = " + this.rid + ",title = " + this.title ;
}
}
class Authority{ // 权限
private int aid ;
private String title ;
private String flag ;
public Authority(int aid,String title,String flag) {
this.aid = aid ;
this.title = title ;
this.flag = flag ;
}
public String getInfo() {
return "【AUTHORITY】id = " + this.aid + ",title = " + this.title + ",flag = " + this.flag ;
}
}
注意:
角色_权限
表里两个字段全是外键字段(角色ID
是角色的外键字段,权限ID
是权限的外键字段)角色_权限
表单独建类在Department
类中添加:
private Employee [] emps ; // 一个部门有多个雇员
private Role role ; // 一个部门属于一个角色
public void setEmps(Employee [] emps){
this.emps = emps ;
}
public Employee [] getEmps(){
return this.emps ;
}
public void setRole(Role role){
this.role = role ;
}
public Role getRole(){
return this.role ;
}
在Employee
类中添加:
private Department dept ; // 一个雇员属于一个部门
public void setDept(Department dept){
this.dept = dept ;
}
public Department getDept(){
return this.dept ;
}
在Role
类中添加:
private Department [] depts ; // 多个部门具备此角色
private Authority [] auth ; // 一个部门有多个权限
public void setDepts(Department [] depts){
this.depts = depts ;
}
public Department [] getDepts(){
return this.depts ;
}
public void setAuth(Authority [] auth){
this.auth = auth ;
}
public Authority [] getAuth(){
return this.auth ;
}
根据关系进行测试数据的编写,完成指定的输出。
class Department{ // 部门信息
private int did ; // 部门编号
private String dname ; // 部门名称
private Employee [] emps ; // 一个部门有多个雇员
private Role role ; // 一个部门属于一个角色
public Department(int did,String dname) {
this.did = did ;
this.dname = dname ;
}
public void setEmps(Employee [] emps){
this.emps = emps ;
}
public Employee [] getEmps(){
return this.emps ;
}
public void setRole(Role role){
this.role = role ;
}
public Role getRole(){
return this.role ;
}
public String getInfo() {
return "【DEPARTMENT】id = " + this.did + ",name = " + this.dname ;
}
}
class Employee{ // 员工信息
private int eid ; // 员工工号
private String ename ; // 员工姓名
private Department dept ; // 一个雇员属于一个部门
public Employee(int eid,String ename) {
this.eid = eid ;
this.ename = ename ;
}
public void setDept(Department dept){
this.dept = dept ;
}
public Department getDept(){
return this.dept ;
}
public String getInfo() {
return "【EMPLOYEE】id = " + this.eid + ",name = " + this.ename ;
}
}
class Role{ // 角色信息
private int rid ;
private String title ;
private Department [] depts ; // 多个部门具备此角色
private Authority [] auth ; // 一个部门有多个权限
public Role(int rid,String title) {
this.rid = rid ;
this.title = title ;
}
public void setDepts(Department [] depts){
this.depts = depts ;
}
public Department [] getDepts(){
return this.depts ;
}
public void setAuth(Authority [] auth){
this.auth = auth ;
}
public Authority [] getAuth(){
return this.auth ;
}
public String getInfo() {
return "【ROLE】id = " + this.rid + ",title = " + this.title ;
}
}
class Authority{ // 权限
private int aid ;
private String title ;
private String flag ;
private Role [] role ; // 多个角色可以有同一个权限
public Authority(int aid,String title,String flag) {
this.aid = aid ;
this.title = title ;
this.flag = flag ;
}
public void setRoles(Role [] role){
this.role = role ;
}
public Role [] getRoles(){
return this.role ;
}
public String getInfo() {
return "【AUTHORITY】id = " + this.aid + ",title = " + this.title + ",flag = " + this.flag ;
}
}
public class EmpDeptRoleAuth { // 设置开发需求
public static void main(String args[]) {
// 第一步:设置数据间的关系
// 1、分别创建各类的实例化对象
Department da = new Department(10,"ACCOUNTING") ;
Department db = new Department(13,"HR") ;
Department dc = new Department(16,"Directors") ;
Employee ea = new Employee(4396,"Dexter") ;
Employee eb = new Employee(4728,"Tsukishima Kei") ;
Employee ec = new Employee(1230,"Toono Takaki") ;
Employee ed = new Employee(4321,"Norwegian") ;
Employee ee = new Employee(4269,"Friday") ;
Role ra = new Role(101,"Manager") ;
Role rb = new Role(107,"Staff") ;
Authority aa = new Authority(9901,"雇员入职","employee:entry") ;
Authority ab = new Authority(9902,"雇员晋升","employee:boost") ;
Authority ac = new Authority(9903,"发布公告","employee:announcey") ;
Authority ad = new Authority(9904,"查看客户信息","customer:display") ;
Authority ae = new Authority(9905,"回访记录","customer:record") ;
// 2、设置对象间的引用关系
// 2.1 设置角色与权限的关系
ra.setAuth(new Authority [] {aa,ab,ac,ad,ae}) ; // ra的所有权限
rb.setAuth(new Authority [] {ad,ae}) ; // rb的所有权限
// 2.2 设置权限与角色的关系
aa.setRoles(new Role [] {ra}) ;
ab.setRoles(new Role [] {ra}) ;
ac.setRoles(new Role [] {ra}) ;
ad.setRoles(new Role [] {ra,rb}) ;
ae.setRoles(new Role [] {ra,rb}) ;
// 2.3 设置部门与角色的关系
da.setRole(rb) ;
db.setRole(ra) ;
dc.setRole(ra) ;
// 2.4 设置角色与部门的关系
ra.setDepts(new Department [] {db,dc}) ;
rb.setDepts(new Department [] {da}) ;
// 2.5 设置雇员与部门的关系
ea.setDept(da) ;
eb.setDept(db) ;
ec.setDept(da) ;
ed.setDept(db) ;
ee.setDept(dc) ;
// 2.6 设置部门与雇员的关系
da.setEmps(new Employee [] {ea,ec}) ;
db.setEmps(new Employee [] {eb,ed}) ;
dc.setEmps(new Employee [] {ee}) ;
// 第二步:根据关系取出数据
// 3、要求可以根据一个员工找到他所对应的部门,以及该部门对应的角色,以及每个角色对应的所有权限
System.out.println("1、员工找部门,部门对应角色,角色的权限") ;
System.out.println(ea.getInfo()) ; // 输出雇员的信息
System.out.println("\t##" + ea.getDept().getInfo()) ;
System.out.println("\t\t@@" + ea.getDept().getRole().getInfo()) ;
for(int x = 0 ; x < ea.getDept().getRole().getAuth().length ; x++){
System.out.println("\t\t\t$$" + ea.getDept().getRole().getAuth()[x].getInfo()) ;
}
System.out.println("===============================================================") ;
// 4、可以根据一个角色找到具备此角色的所有部门,以及该部门下的所有员工;
System.out.println("2、角色找部门,部门下员工") ;
System.out.println(ra.getInfo()) ; // 输出部门的信息
for(int x = 0 ; x < ra.getDepts().length ; x++){
System.out.println("\t##" + ra.getDepts()[x].getInfo()) ;
for(int y = 0 ; y < ra.getDepts()[x].getEmps().length ; y++){ // 注意是.getDepts()[x].
System.out.println("\t\t@@" + ra.getDepts()[x].getEmps()[y].getInfo()) ;
}
}
System.out.println("===============================================================") ;
// 5、根据一个权限列出具备有该权限的所有的角色以及每一个角色下对应的所有部门,以及每个部门中的所有员工
System.out.println("3、权限找角色,角色下部门,部门下员工") ;
System.out.println(aa.getInfo()) ; // 输出权限的信息
for(int x = 0 ; x < aa.getRoles().length ; x++){
System.out.println("\t##" + aa.getRoles()[x].getInfo()) ;
for(int y = 0 ; y < aa.getRoles()[x].getDepts().length ; y++){
System.out.println("\t\t@@" + aa.getRoles()[x].getDepts()[y].getInfo()) ;
for(int z = 0 ; z < aa.getRoles()[x].getDepts()[y].getEmps().length ; z++){ // 注意是.getDepts()[x].
System.out.println("\t\t\t$$" + aa.getRoles()[x].getDepts()[y].getEmps()[z].getInfo()) ;
}
}
}
}
}
本程序中包含了基本上可能用到的所有复杂逻辑。
阿里云【名师课堂】Java面向对象开发43:【第03个代码模型】综合案例:数据表与简单Java类(角色与权限)
原文:https://www.cnblogs.com/playerone/p/13096251.html