Spring / Spring Security
How do I enable Spring Security in Java Web application?
To enable Spring security in Java Web application, you need to do configure three things,
- declare a delegating proxy filter in web.xml,
- add ContextLoaderListener in web.xml,
- and provide actual security constraints on applicationContext-Security.xml file.
More Related questions...