Hi Eugen,
I have always been wondering about Spring's support for RESTful architectures. It certainly does support making a REST interface with Spring MVC, but once you start using other features like Spring Security, the way it handles user authentication and CSRF token generation, it seems to me that Spring is tightly bound with the stateful
Servlet implementation. Would you recommend avoiding Spring Security when building a RESTful interface, or rather try to persist session information with Spring Session? Or is there an easy way with REST to handle authentication and csrf without relying on servlet's sessions?