{@link StateScope} that stores states at application level.
States scoped to 'app' are stored at {@link ServletContext} and are shared by all the users of the application.
285286287288289290291
return new UserSessionStateScope(); } @Bean public AppStateScope appStateScope() { return new AppStateScope(); }