blob: f60df1cb6b933fe6bf57bf0a8fe12811edc4b7f7 [file] [log] [blame]
Apache Ignite Client Spring Boot Autoconfigure Module
---------------------------
Apache Ignite Spring Boot Autoconfigure module provides autoconfigure capabilities for Spring-boot based applications.
Importing Spring Boot Autoconfigure Module In Maven Project
----------------------------------------
If you are using Maven to manage dependencies of your project, you can add Spring 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>spring-boot-ignite-client-autoconfigure</artifactId>
<version>${ignite.version}</version>
</dependency>
...
</dependencies>
...
</project>