Introduction We have seen in the previous article Dynamically Securing Method Execution with Spring Security how it is possible to exploit the nature of Spring Security ACL module to dinamically secure methods access. Here we detail this solution with a working example. The example source code is available in SpringDynamicSecurityExample. It is based on the Spring Security … [Read more...] about Dynamic Spring Security Sample
Spring
How to customize the StrutsSpringObjectFactory
Introduction Spring can use its own MVC or integrate other MVC frameworks. It can for instance integrate with Struts2 by a specific plugin. The plugin overrides the Struts Object Factory providing a way to configure struts actions as beans in the Spring Context. Sometimes some customized behaviour is needed and the spring plugin as it is is not enough. In this case the … [Read more...] about How to customize the StrutsSpringObjectFactory
Dynamically Securing Method Execution with Spring Security
Preface Spring Security provides a robust support for securing Spring based applications but it fails in some way when it comes to design dynamically configurable security, especially regarding dynamic configurability of java methods access. How we can overcome these limitations? Introduction When we want to secure an application, we must define access policies to its … [Read more...] about Dynamically Securing Method Execution with Spring Security