-
Notifications
You must be signed in to change notification settings - Fork 111
IGNITE-23951 Spring Data JDBC support for Ignite #4968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
apply from: "$rootDir/buildscripts/java-core.gradle" | ||
apply from: "$rootDir/buildscripts/publishing.gradle" | ||
apply from: "$rootDir/buildscripts/java-junit5.gradle" | ||
|
||
description = "spring-data-ignite" | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
|
||
dependencies { | ||
implementation project(':ignite-client') | ||
implementation project(":ignite-jdbc") | ||
implementation libs.spring.boot | ||
implementation libs.spring.boot.autoconfigure | ||
implementation libs.spring.data.jdbc | ||
|
||
testImplementation libs.spring.boot.test | ||
testImplementation libs.assertj.core | ||
testImplementation(testFixtures project(':ignite-runner')) | ||
testImplementation(testFixtures(project(':ignite-core'))) | ||
} |
129 changes: 129 additions & 0 deletions
129
modules/spring/spring-data-ignite/src/main/java/org/apache/ignite/data/IgniteDialect.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.ignite.data; | ||
|
||
import java.util.Collections; | ||
import java.util.Set; | ||
import org.springframework.data.relational.core.dialect.AbstractDialect; | ||
import org.springframework.data.relational.core.dialect.ArrayColumns; | ||
import org.springframework.data.relational.core.dialect.LimitClause; | ||
import org.springframework.data.relational.core.dialect.LockClause; | ||
import org.springframework.data.relational.core.sql.IdentifierProcessing; | ||
import org.springframework.data.relational.core.sql.IdentifierProcessing.LetterCasing; | ||
import org.springframework.data.relational.core.sql.IdentifierProcessing.Quoting; | ||
import org.springframework.data.relational.core.sql.LockOptions; | ||
import org.springframework.util.Assert; | ||
import org.springframework.util.ClassUtils; | ||
|
||
/** | ||
* Implementation of Ignite-specific dialect. | ||
*/ | ||
public class IgniteDialect extends AbstractDialect { | ||
|
||
/** | ||
* Singleton instance. | ||
*/ | ||
public static final IgniteDialect INSTANCE = new IgniteDialect(); | ||
|
||
private IgniteDialect() {} | ||
|
||
private static final LimitClause LIMIT_CLAUSE = new LimitClause() { | ||
|
||
@Override | ||
public String getLimit(long limit) { | ||
return "LIMIT " + limit; | ||
} | ||
|
||
@Override | ||
public String getOffset(long offset) { | ||
return "OFFSET " + offset; | ||
} | ||
|
||
@Override | ||
public String getLimitOffset(long limit, long offset) { | ||
return String.format("OFFSET %d ROWS FETCH FIRST %d ROWS ONLY", offset, limit); | ||
} | ||
|
||
@Override | ||
public Position getClausePosition() { | ||
return Position.AFTER_ORDER_BY; | ||
} | ||
}; | ||
|
||
static class IgniteArrayColumns implements ArrayColumns { | ||
|
||
@Override | ||
public boolean isSupported() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public Class<?> getArrayType(Class<?> userType) { | ||
|
||
Assert.notNull(userType, "Array component type must not be null"); | ||
|
||
return ClassUtils.resolvePrimitiveIfNecessary(userType); | ||
} | ||
} | ||
|
||
@Override | ||
public LimitClause limit() { | ||
return LIMIT_CLAUSE; | ||
} | ||
|
||
static final LockClause LOCK_CLAUSE = new LockClause() { | ||
|
||
@Override | ||
public String getLock(LockOptions lockOptions) { | ||
return ""; | ||
} | ||
|
||
@Override | ||
public Position getClausePosition() { | ||
return Position.AFTER_ORDER_BY; | ||
} | ||
}; | ||
|
||
@Override | ||
public LockClause lock() { | ||
return LOCK_CLAUSE; | ||
} | ||
|
||
private final IgniteArrayColumns arrayColumns = new IgniteArrayColumns(); | ||
|
||
@Override | ||
public ArrayColumns getArraySupport() { | ||
return arrayColumns; | ||
} | ||
|
||
@Override | ||
public IdentifierProcessing getIdentifierProcessing() { | ||
return IdentifierProcessing.create(Quoting.ANSI, LetterCasing.UPPER_CASE); | ||
} | ||
|
||
@Override | ||
public Set<Class<?>> simpleTypes() { | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove empty line |
||
return Collections.emptySet(); | ||
} | ||
|
||
@Override | ||
public boolean supportsSingleQueryLoading() { | ||
return false; | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
...spring/spring-data-ignite/src/main/java/org/apache/ignite/data/IgniteDialectProvider.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.ignite.data; | ||
|
||
import java.util.Optional; | ||
import org.springframework.data.jdbc.repository.config.DialectResolver; | ||
import org.springframework.data.relational.core.dialect.Dialect; | ||
import org.springframework.jdbc.core.JdbcOperations; | ||
|
||
/** | ||
* Provider for Ignite-specific dialect. | ||
*/ | ||
public class IgniteDialectProvider implements DialectResolver.JdbcDialectProvider { | ||
|
||
@Override public Optional<Dialect> getDialect(JdbcOperations operations) { | ||
return Optional.of(IgniteDialect.INSTANCE); | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
modules/spring/spring-data-ignite/src/main/resources/META-INF/spring.factories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
org.springframework.data.jdbc.repository.config.DialectResolver$JdbcDialectProvider=org.apache.ignite.data.IgniteDialectProvider |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use '(' chat or not everywher