0

以下是我的代码结构

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 
 }
}

在这种情况下,我无法说明如何使用 sessionattribute 表示法

Spring 框架中是否有一个属性可以设置会话值并且可以从 Spring 应用程序的任何部分访问 函数调用太多,更改所有方法的签名将是很多繁琐的任务

4

1 回答 1

0

我认为您可以在这种情况下使用 spring bean,创建 bean 将其保留在 http 会话范围内。为此,您可以在此处找到配置。然后在控制器中使用相同的 bean。不确定天气它可以与 sessionattribute 注释结合使用。

于 2012-07-16T05:04:48.690 回答