Spring security - Reach users ID without passing it through every controller
- by nilsi
I have a design issue that I don't know how to solve. I'm using Spring 3.2.4 and Spring security 3.1.4.
I have a Account table in my database that looks like this:
create table Account (id identity,
username varchar unique,
password varchar not null,
firstName varchar not…