0
以下是我的代碼結構Spring框架訪問會話變量
Filter A{
Helper B() // Call to Helper B
int a= HelperA.function();
}
像這些有多種輔助類和多個函數調用正在取得
Helper B{
// Set the attributes in here Value in here
}
HelperA{
function(){
// Using the Session values
}
}
我不能夠涉及如何在這種情況下使用會話屬性表示法
Spring框架中是否存在一個屬性,用於設置會話值並可以從任何部分訪問Spring應用程序 函數調用太多,改變所有方法的簽名會很繁瑣