thomasvdv wrote:
Are there any alternatives?
We have a multi-page form workflow and want to avoid an update when the user has not modified data and clicks "back" or "next"
1). If you are using ehcache, you can tune timeToIdleSeconds and timeToLiveSeconds parameters for each cached class, for all other supported caches I think there is the same configs.
2). Another solution using of HttpSession or Statefull Session Bean to save intermediate data, but don't put very large data structures into HttpSessions.
3). some kind of onEdit javascript/event that marks the input like dirty and needed to reupdate.