I'm building a REST
application with spring
, and would like to secure the methods as they will be reachable both within the intranet and later on by some customers.
All requests are GET
only. How can a basic, yet strong enough security be implemented? An additional get parameter like ?key=12345
where each customer gets his own key?
Or how could this be done?