Spring JDBC Plus provides Spring Data JDBC based extension.
It provides necessary features when writing more complex SQL than the functions supported by CrudRepository
.
If you need to use Spring Data JDBC's Persistence features and SQL execution function in combination, Spring JDBC Plus
may be an appropriate choice.
-
Support for executing custom
SQL SELECT
statements -
Provide
BeanParameterSource
,MapParameterSource
,EntityParameterSource
-
Provide parameter source converters such as
Java8Time
,Enum
, etc. -
Entity mapping support for complex table join SELECT results
-
AggregateResultSet
supports mapping of1: N
result data toAggregate
object graph byLEFT OUTER JOIN
lookup -
JdbcRepository
provides insert / update syntax -
Support for setting
Reactive (Flux / Mono)
type as the return type ofCustomRepository
method
-
Gradle
buildscript { repositories { mavenCentral() mavenLocal() maven { url "https://repo.spring.io/milestone/" } } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.4") } } dependencies { implementation("org.springframework.boot:spring-boot-starter-data-jdbc") implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:3.3.4") }
-
Maven
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.3.4</version> <relativePath/> </parent> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jdbc</artifactId> </dependency> <dependency> <groupId>com.navercorp.spring</groupId> <artifactId>spring-boot-starter-data-jdbc-plus-sql</artifactId> <version>3.3.4</version> </dependency>
-
Java Codes
@Table("n_order") @Data public class Order { @Id @Column("order_no") private Long orderNo; @Column("price") private long price; @Column("purchaser_no") private String purchaserNo; } public interface OrderRepository extends CrudRepository<Order, Long>, OrderRepositoryCustom { } public interface OrderRepositoryCustom { List<Order> findByPurchaserNo(String purchaserNo); } public class OrderRepositoryImpl extends JdbcRepositorySupport<Order> implements OrderRepositoryCustom { private final OrderSql sqls; public OrderRepositoryImpl(EntityJdbcProvider entityJdbcProvider) { super(Order.class, entityJdbcProvider); this.sql = sqls(OrderSql::new); } @Override public List<Order> findByPurchaserNo(String purchaserNo) { String sql = this.sql.selectByPurchaserNo(); return find(sql, mapParameterSource() .addValue("purchaserNo", purchaserNo)); } }
-
Groovy codes for SQL
class OrderSql extends SqlGeneratorSupport { String selectByPurchaserNo() { """ SELECT ${sql.columns(Order)} FROM n_order WHERE purchaser_no = :purchaserNo """ } }
- Must use named parameters to pass parameters to SQL.
- If parameter values are concatenated directly to String, it produces bad effects.
- May cause SQL injection vulnerability.
- Reduce efficiency of caches in PreparedStatement and NamedParameterJdbcTemplate
Be careful when use string interpolation in Groovy and Kotlin.
-
Bad ๐
class OrderSql extends SqlGeneratorSupport { String selectByPurchaserNo(String purchaserNo) { """ SELECT ${sql.columns(Order)} FROM n_order WHERE purchaser_no = '${purchaserNo}' """ } }
-
Good ๐
class OrderSql extends SqlGeneratorSupport { String selectByPurchaserNo() { """ SELECT ${sql.columns(Order)} FROM n_order WHERE purchaser_no = :purchaserNo """ } }
@Value
@Builder
@Table("post")
public class PostDto {
@Id
Long id;
@Column
Post post;
@SqlTableAlias("p_labels")
@MappedCollection(idColumn = "board_id")
Set<Label> labels;
}
@SqlTableAlias
is used to attach a separate identifier to the table. @SqlTableAlias
can be applied to class, field
and method.
@SqlTableAlias
is used in the form of @SqlTableAlias("value")
.
@SqlTableAlias("ts")
static class TestEntityWithNonNullValue {
@Column
private Long testerId;
@Column("tester_nm")
private String testerName;
@SqlFunction(expressions = {SqlFunction.COLUMN_NAME, "0"})
@Column
private int age;
}
@SqlFunction
is typically used to map fields or methods of entity classes to SQL functions.
For example, it can be utilized to define default values for certain fields, or to transform values based on specific conditions.
@Value
@Builder
@Table("article")
static class SoftDeleteArticle {
@Id
Long id;
String contents;
@SoftDeleteColumn.Boolean(valueAsDeleted = "true")
boolean deleted;
}
@SoftDeleteColumn
supports the soft delete, which is considered as deleted but does not delete actually.
This replaces the default 'DELETE' operations to 'UPDATE' operations, by updating specific columns.
You can use value types Boolean
or String
by Declaring @SoftDeleteColumn.Boolean
or @SoftDeleteColumn.String
.
- naver hackday-conventions-java
- naver/hackday-conventions-java
- checkstyle: ./rule/naver-checkstyle-rules.xml
- intellij-formatter: ./rule/naver-intellij-formatter.xml (https://naver.github.io/hackday-conventions-java/#editor-config)
$ ./gradlew clean build
Copyright 2020-2021 NAVER Corp.
Licensed 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.