0
ArrayList<GWLData> getGwlList = runMatcherDao.fetchData();

Here getGwlList is an ArrayList of Objects of GWLData class. I want to store the getGwlList in session in spring. Moreover how can i access that session variable letter ? Any help is deeply appriciated.

ABHISHEK RANA
  • 333
  • 3
  • 7

1 Answers1

1

you can use session scoped beans or you can inject Session object to your bean. There is a simillar question here How to use Session attributes in Spring-mvc

Community
  • 1
  • 1
tomas930
  • 51
  • 3