2012-07-15 89 views
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應用程序 函數調用太多,改變所有方法的簽名會很繁瑣

回答

0

我想你可以在這個場景中使用spring bean,創建bean將它保存在http session scope 。 爲此您可以找到配置here。然後在控制器中使用相同的bean。不確定的天氣可以與sessionattribute註釋一起使用。