我在我的應用程序中創建了一個自定義範圍,它實現org.springframework.beans.factory.config.Scope
。Spring Custom Scoped Bean - 銷燬回調
作爲這一部分,我必須實現下面的方法,以便在我的自定義作用域bean上正確調用PreDestroy方法。
public void registerDestructionCallback(String name, Runnable callback) {
}
的方法的Javadoc不說清楚,我似乎失去了約,我應該在這個方法寫什麼代碼。
有人可以幫忙嗎?