傳輸對象模式

傳輸對象模式(Transfer Object Pattern)用於從客戶端向服務器一次性傳遞帶有多個屬性的數據。傳輸對象也被稱爲數值對象。傳輸對象是一個具備 getter/setter 方法的簡單的 POJO 類,它是可序列化的,因此它能夠經過網絡傳輸。它沒有任何的行爲。服務器端的業務類一般從數據庫讀取數據,而後填充 POJO,並把它發送到客戶端或按值傳遞它。對於客戶端,傳輸對象是隻讀的。客戶端能夠建立本身的傳輸對象,並把它傳遞給服務器,以便一次性更新數據庫中的數值。如下是這種設計模式的實體。java

  • 業務對象(Business Object) - 爲傳輸對象填充數據的業務服務。
  • 傳輸對象(Transfer Object) - 簡單的 POJO,只有設置/獲取屬性的方法。
  • 客戶端(Client) - 客戶端能夠發送請求或者發送傳輸對象到業務對象。

實現

咱們將建立一個做爲業務對象的 StudentBO 和做爲傳輸對象的 StudentVO,它們都表明了咱們的實體。數據庫

TransferObjectPatternDemo,咱們的演示類在這裏是做爲一個客戶端,將使用 StudentBO 和 Student 來演示傳輸對象設計模式。設計模式

傳輸對象模式的 UML 圖

步驟 1

建立傳輸對象。服務器

StudentVO.java

public class StudentVO { private String name; private int rollNo; StudentVO(String name, int rollNo){ this.name = name; this.rollNo = rollNo; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getRollNo() { return rollNo; } public void setRollNo(int rollNo) { this.rollNo = rollNo; } }

步驟 2

建立業務對象。網絡

StudentBO.java

import java.util.ArrayList; import java.util.List; public class StudentBO { //列表是看成一個數據庫 List<StudentVO> students; public StudentBO(){ students = new ArrayList<StudentVO>(); StudentVO student1 = new StudentVO("Robert",0); StudentVO student2 = new StudentVO("John",1); students.add(student1); students.add(student2); } public void deleteStudent(StudentVO student) { students.remove(student.getRollNo()); System.out.println("Student: Roll No " + student.getRollNo() +", deleted from database"); } //從數據庫中檢索學生名單 public List<StudentVO> getAllStudents() { return students; } public StudentVO getStudent(int rollNo) { return students.get(rollNo); } public void updateStudent(StudentVO student) { students.get(student.getRollNo()).setName(student.getName()); System.out.println("Student: Roll No " + student.getRollNo() +", updated in the database"); } }

步驟 3

使用 StudentBO 來演示傳輸對象設計模式。ide

TransferObjectPatternDemo.java

public class TransferObjectPatternDemo { public static void main(String[] args) { StudentBO studentBusinessObject = new StudentBO(); //輸出全部的學生 for (StudentVO student : studentBusinessObject.getAllStudents()) { System.out.println("Student: [RollNo : " +student.getRollNo()+", Name : "+student.getName()+" ]"); } //更新學生 StudentVO student =studentBusinessObject.getAllStudents().get(0); student.setName("Michael"); studentBusinessObject.updateStudent(student); //獲取學生 studentBusinessObject.getStudent(0); System.out.println("Student: [RollNo : " +student.getRollNo()+", Name : "+student.getName()+" ]"); } }

步驟 4

執行程序,輸出結果:this

Student: [RollNo : 0, Name : Robert ] Student: [RollNo : 1, Name : John ] Student: Roll No 0, updated in the database Student: [RollNo : 0, Name : Michael ]
相關文章
相關標籤/搜索