Skip to content
cyrille-leclerc edited this page Dec 18, 2011 · 8 revisions

Introduction

Spring Security addons. This code is not provided by SpringSource nor by the Spring Framework Project.

The wiki is being migrated from Google Code to GitHub.

Audit

@Audited

See AuditedAnnotation. Simply add declarative auditing in your application using an @Audited annotation like this:

@Audited(message = "transferMoney(#{args[0].accountNumber}, #{args[1].accountNumber}, #{args[3].amount})")
public void transferMoney(Account from, Account to, Amount amount) throws BusinessException { ... }

How to Integrate this library in your project

Integration / download details are described on the installation page. The simplest way is to declare the following Maven dependency:

<project ...>
   <dependencies>
      <dependency>
         <groupId>fr.xebia.springframework</groupId>
         <artifactId>xebia-spring-security-extras</artifactId>
         <version>1.1.6</version>
      </dependency>
      ...
   </dependencies>
   ...
</project>
Clone this wiki locally