Updated Spring Data GemFire Reference Documentation, updating author information and added 'LIKE' operator details to the 'Executing OQL Queries' section.
This commit is contained in:
@@ -13,22 +13,27 @@
|
||||
<author>
|
||||
<firstname>Costin</firstname>
|
||||
<surname>Leau</surname>
|
||||
<affiliation>SpringSource, a division of VMware</affiliation>
|
||||
<affiliation>SpringSource, a division of Pivotal</affiliation>
|
||||
</author>
|
||||
<author>
|
||||
<author>
|
||||
<firstname>David</firstname>
|
||||
<surname>Turanski</surname>
|
||||
<affiliation>SpringSource, a division of Pivotal</affiliation>
|
||||
</author>
|
||||
<author>
|
||||
<firstname>John</firstname>
|
||||
<surname>Blum</surname>
|
||||
<affiliation>SpringSource, a division of Pivotal</affiliation>
|
||||
</author>
|
||||
<author>
|
||||
<firstname>Oliver</firstname>
|
||||
<surname>Gierke</surname>
|
||||
<affiliation>SpringSource, a division of VMware</affiliation>
|
||||
</author>
|
||||
<author>
|
||||
<firstname>David</firstname>
|
||||
<surname>Turanski</surname>
|
||||
<affiliation>SpringSource, a division of VMware</affiliation>
|
||||
<affiliation>SpringSource, a division of Pivotal</affiliation>
|
||||
</author>
|
||||
<author>
|
||||
<firstname>Lyndon</firstname>
|
||||
<surname>Adams</surname>
|
||||
<affiliation>VMware</affiliation>
|
||||
<affiliation>Pivotal</affiliation>
|
||||
</author>
|
||||
</authorgroup>
|
||||
|
||||
@@ -87,4 +92,4 @@
|
||||
<title>Appendices</title>
|
||||
<xi:include href="appendix/appendix-schema.xml"/>
|
||||
</part>
|
||||
</book>
|
||||
</book>
|
||||
|
||||
@@ -187,6 +187,15 @@ public class Person { … }</programlisting>
|
||||
<entry><code>x.firstname = $1</code></entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry><literal>Like</literal></entry>
|
||||
|
||||
<entry><methodname>findByFirstnameLike(String
|
||||
name)</methodname></entry>
|
||||
|
||||
<entry><code>x.firstname LIKE $1</code></entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry><literal>Not</literal></entry>
|
||||
|
||||
|
||||
11
maven.gradle
11
maven.gradle
@@ -57,17 +57,22 @@ def customizePom(pom, gradleProject) {
|
||||
developer {
|
||||
id = 'dturanski'
|
||||
name = 'David Turanski'
|
||||
email = 'dturanski@vmware.com'
|
||||
email = 'dturanski@gopivotal.com'
|
||||
}
|
||||
developer {
|
||||
id = 'jblum'
|
||||
name = 'John Blum'
|
||||
email = 'jblum@gopivotal.com'
|
||||
}
|
||||
developer {
|
||||
id = 'ogierke'
|
||||
name = 'Oliver Gierke'
|
||||
email = 'ogierke@vmware.com'
|
||||
email = 'ogierke@gopivotal.com'
|
||||
}
|
||||
developer {
|
||||
id = 'ladams'
|
||||
name = 'Lyndon Adams'
|
||||
email = 'ladams@vmware.com'
|
||||
email = 'ladams@gopivotal.com'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,6 +30,7 @@ import org.springframework.data.repository.query.parser.Part;
|
||||
/**
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author John Blum
|
||||
*/
|
||||
@SuppressWarnings("unused")
|
||||
public class PredicatesUnitTests {
|
||||
|
||||
Reference in New Issue
Block a user