責任鏈模式結合IOC

2021-10-05 05:13:18 字數 1980 閱讀 7483

/**

* @author goubin

* @description 處理器介面

*/public

inte***ce

templatehandler

@component

("ahandler"

)public

class

ahandler

implements

templatehandler

@override

public

void

setnexthandler

(templatehandler nexthandler)

@override

public

void

printmsg

(int type)

else

}}

@component

("bhandler"

)public

class

bhandler

implements

templatehandler

@override

public

void

setnexthandler

(templatehandler nexthandler)

@override

public

void

printmsg

(int type)

else

}}

@component

("chandler"

)public

class

chandler

implements

templatehandler

@override

public

void

setnexthandler

(templatehandler nexthandler)

@override

public

void

printmsg

(int type)

else

}}

/**

* @author goubin

* @description 模板型別列舉

*/@getter

@allargsconstructor

public

enum templateenum

將所有處理器節點處理成煉表形式,指向下乙個處理器

/**

* @author goubin

* @description 責任鏈節點初始化控制器

*/@component

public

class

executetemplatehandler

/** * 該類被載入後執行

* 設定模板執行器責任鏈

*/@postconstruct

public

void

afterconstruct()

// 迭代設定鏈節點if(

!collectionutils.

isempty

(templatehandlerlist)

)// 從第乙個節點開始

this

.templatehandler = templatehandlerlist.

get(0)

;}}}

@runwith

(springrunner.

class

)@springboottest

class

)public

class

}

責任鏈模式

責任鏈模式 chain of responsibility 的目標是使多個物件都有機會處理請求,從而避免請求的傳送者和接收者之間的耦合關係。將這些物件連成一條鏈,並沿著這條鏈傳遞請求,直到有乙個物件處理它為止。舉個例子。你到銀行去辦理業務,只是簡單的存個錢,也許atm就解決你的問題。如果你是為了交費...

責任鏈模式

有3個request與3個handler,每個request由相應的handler來處理,當乙個handler與request不匹配時則傳遞給下乙個handler來處理 inte ce request class request1 implements request class request2 ...

責任鏈模式

了解了一下責任鏈模式,簡單的說下自己的理解吧 責任鏈就是說待處理的資料在request的時候,先經過filter1的處理,再經過filter2的處理,然後response時,先經過filter2的處理,在經過filter1的處理。實現思路是filterchain包括filter1和filter2,同...