Google Session Management Sitebricks

I researched the Sitebricks website and its related forums, but could not find out if it supports session management (saving state across multiple requests) or not. Just wondering if anyone knows the answer to this question?

+3
source share
1 answer

Sitebricks is based on the Guice Servlet extension for Guice, which allows you to enter objects as objects through a session, annotating them with @SessionScoped or by specifying the session area when binding in the module:

bind(Something.class).to(SomeImplementation.class).in(SessionScoped.class);
+2
source

All Articles