Cemo
Cemo

Reputation: 5550

Distributed Session for Spring Security

What are the minimum steps requires to config Spring Security Java to provide a database stored session implementation. Basically I want to use Session ID with Cookies and a JDBC based Session Implementation. It seems that I have to implement a custom Session Registry but could not be sure that what I need extra implementations to provide a database based Session implementation.

(I am using Spring Security RC2)

Upvotes: 1

Views: 2982

Answers (2)

Cemo
Cemo

Reputation: 5550

Rob Winch and M. Deinum clarified my question and explained that currently this is not possible with Spring. However there is an issue related to my question. I have decided to use Servlet API and Container Session Management.

There is a Spring Session project which is being implemented by Rob Winch currently.

Upvotes: 1

Azee
Azee

Reputation: 1829

I have implemented RESTfull distributive system using Spring Security and MongoDB. Here are filters, config and service.

Please feel free to fork and push.

Upvotes: 1

Related Questions