Re: SessionStore on database

2020-04-29 Thread Martin Grigorov
Hi On Wed, Apr 29, 2020, 19:55 Andrea Del Bene wrote: > Hi, > > if you haven't done it yet you should have a look at WicketStuff data > store projects: > > https://github.com/wicketstuff/core/tree/master/datastores-parent > > > this should give you some good ideas. > The data stores distribute

Re: SessionStore on database

2020-04-29 Thread Andrea Del Bene
Hi, if you haven't done it yet you should have a look at WicketStuff data store projects: https://github.com/wicketstuff/core/tree/master/datastores-parent this should give you some good ideas. On 29/04/20 17:30, Shengche Hsiao wrote: Thomas, thanks for your opinion, I'll try it On Wed,

Re: SessionStore on database

2020-04-29 Thread Shengche Hsiao
Thomas, thanks for your opinion, I'll try it On Wed, Apr 29, 2020 at 2:49 PM Thomas Heigl wrote: > Hi, > > There are two options I'm aware of: > > - You can use a session manager in your application server that stores your > session in the database. I.e. Tomcat's JDBC store. > - You can use

Re: SessionStore on database

2020-04-29 Thread Thomas Heigl
Hi, There are two options I'm aware of: - You can use a session manager in your application server that stores your session in the database. I.e. Tomcat's JDBC store. - You can use Spring Session with a JDBC store I recently implemented Spring Session for Wicket with Redis as a backing store.

SessionStore on database

2020-04-28 Thread ShengChe Hsiao
Dear all I want to implement cross datacenter session replication for my web app, can I persist session on shared database? If it does, how can I do? I searched the web, and found org.apache.wicket.protocol.http. SecondLevelCacheSessionStore.IClusteredPageStore I have an idea for implement