I have problem pertaining to the maintaining state of the particular @Request scope bean. I have a Seam Entity List request scope component. And after a particular request i want it to maintain its state and not to be refreshed, a4j:keepAlive
do the solution but unfortunately using a4j:keepAlive
destroy some other functionality inside a view so instead changing the whole page i just ignore a4j:keepAlive
.
My question is, how can i maintain this particular scenario without using a4j:keepAlive
and without making my component into @SessionScope
or @ConversationScope
.