samaitra commented on a change in pull request #25:
URL: https://github.com/apache/ignite-extensions/pull/25#discussion_r502741496



##########
File path: modules/spring-data-2.2/README.txt
##########
@@ -0,0 +1,47 @@
+Apache Ignite Spring Module
+---------------------------
+
+Apache Ignite Spring Data 2.2 module provides an integration with Spring Data 
2.2 framework.
+
+To enable Spring Data 2.2 module when starting a standalone node, move 
'optional/ignite-spring-data' folder to
+'libs' folder before running 'ignite.{sh|bat}' script. The content of the 
module folder will
+be added to classpath in this case.
+
+Main features:
+
+- Supports multiple Ignite instances on same JVM (@RepositoryConfig).
+- Supports query tuning parameters in @Query annotation
+- Supports projections
+- Supports Page and Stream responses
+- Supports Sql Fields Query resultset transformation into the domain entity
+- Supports named parameters (:myParam) into SQL queries, declared using 
@Param("myParam")
+- Supports advanced parameter binding and SpEL expressions into SQL queries:
+- Template variables:
+    - #entityName - the simple class name of the domain entity
+- Method parameter expressions: Parameters are exposed for indexed access ([0] 
is the first query method's param) or via the name declared using @Param. The 
actual SpEL expression binding is triggered by ?#. Example: ?#{[0] or 
?#{#myParamName}
+- Advanced SpEL expressions: While advanced parameter binding is a very useful 
feature, the real power of SpEL stems from the fact, that the expressions can 
refer to framework abstractions or other application components through SpEL 
EvaluationContext extension model.
+- Supports SpEL expressions into Text queries (TextQuery).
+
+Importing Spring Data 2.2 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>ignite-spring-data_2.2</artifactId>

Review comment:
       we can rename the artifactId to ignite-spring-data_2.2-ext




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to