blob: 38c77de1b20554aea67bdc1297cce54d6bd390fc [file] [log] [blame]
Apache Ignite AOP Module
------------------------
Apache Ignite AOP module provides capability to turn any Java method to a distributed closure by
adding @Gridify annotation to it.
To enable AOP module when starting a standalone node, move 'optional/ignite-aop' folder to
'libs' folder before running 'ignite.{sh|bat}' script. The content of the module folder will
be added to classpath in this case.
Importing AOP Module In Maven Project
-------------------------------------
If you are using Maven to manage dependencies of your project, you can add AOP module
dependency like this (replace '${ignite.version}' with actual Ignite version you are
interested in):
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
...
<dependencies>
...
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-aop-ext</artifactId>
<version>1.0.0</version>
</dependency>
...
</dependencies>
...
</project>