spring-jdbc-plus icon indicating copy to clipboard operation
spring-jdbc-plus copied to clipboard

Spring JDBC Plus

Results 12 spring-jdbc-plus issues
Sort by recently updated
recently updated
newest added

[Spring boot 2.7.2 released](https://github.com/spring-projects/spring-boot/releases/tag/v2.7.2) https://github.com/naver/spring-jdbc-plus/pull/75#pullrequestreview-1040052328

Hello! I found this project useful, but the documentation eventually contains Korean language not many people know. It would be nice to have that in English(or Russian). https://github.com/naver/spring-jdbc-plus/wiki/User-Guide

help wanted

아래 Annotation들이 문서에 없습니다. - `@SqlTableAlias` - `@SqlFunction`

https://github.com/naver/spring-jdbc-plus/blob/8df8b24a2f0ac8546b6d0b8cf641d3a1868fbf89/spring-data-jdbc-plus-sql/src/main/java/com/navercorp/spring/data/jdbc/plus/sql/support/JdbcReactiveDaoSupport.java#L62-L79 비슷하게 selectMono도 있으면 좋을거 같습니다.

syntactic sugar를 위한 (예를 들어 아래와 같은) 코틀린 확장 지원 계획이 있을까요? (`SqlProvider`, `JdbcRepositorySupport`, ...) ```kt class MerchantSql : SqlGeneratorSupport() { fun selectByIdAndSecret() = """ SELECT ${sql.columns()} FROM ${sql.tables()} WHERE...

- 쿼리 작성시 컬럼명 등 Type Safe 한 쿼리 작성을 지원하는 Meta Model Generation

IdOnlyAggregateReferenceUnwrapper 타입의 Unwrapper 로 등록해야 합니다.

* Add SoftDelete Enum * Modify sqlGenerator#createDeleteByIdSql

안녕하세요? spring data jdbc, naver jdbc plus 를 사용하고 있습니다. 기능을 구현하다보니, 반복되는 패턴들이 있어서, 몇가지 적어보려합니다. * soft delete : row 를 실제로 삭제하는 것 대신, flag 로 on/off...