Harsh Singhharshthedev.hashnode.dev·May 3, 2024Meet RayQL - A Schema and Query Language for Your SQLite Side ProjectsLet's be real, as developers, we've all spent way too much time setting up backends, writing validation schemas, and reinventing the wheel for common tasks when working on side projects. It's a massive time sink that takes away from the actual fun of...37 readsschema-language
임근수forlks.hashnode.dev·Mar 14, 2024[Java / Kotlin] QueryDSL 설정기존 mybatis 설정 및 구현되어있던 부분을 점점 JPA 전환하기 위해 작업하면서 필요에 따라 QueryDSL 사용도 필요 할것으로 예상되어 (물론 QueryDsl 구현부도 존재합니다.) 설정한 부분을 기록하고자 합니다. 파트는 maven / gradle 로 정리해볼까 합니다. 공통적으로 Qtable 사용을 위한 classpath 내 빌드 위치가 필요했구요.. QueryDSL사용 해보신 분들은 아시겠지만 빌드 안되어 있을때 소스파일내에 오류...[개발] Java / Kotlin Querydsl
Harsh Mangeharshmange.hashnode.dev·Mar 2, 2024Demystifying 'QueryDSL' in Spring Boot: Your Companion for Crafting Intuitive QueriesIntroduction Ah, the joys of Spring Boot development – the thrill of creating robust applications, the challenges of handling complex databases. If you've ever found yourself wrestling with intricate queries or felt the need for a more friendly way t...826 readsQuerydsl
JaeHun Kimhodu.hashnode.dev·Jan 15, 2024JPA MySql Random 조회 (1) - order by rand()서문 요구사항 개발 중 데이터를 랜덤으로 조회할 필요가 생겼다. DB는 MySql을 사용하고 있다. Mysql은 rand()를 통해 랜덤 기능을 제공하며 데이터를 랜덤하게 조회하기 위해선 공식문서에도 나와있듯이 SELECT * FROM tbl_name ORDER BY RAND(); 와 같이 사용하면 된다. 애플리케이션 서버에서 이를 어떻게 구현할 지가 고민이었고 Spring Boot 2.7.5, JPA, QueryDsl 을 사용중이다. JPQL...13 likes·45 readsSpringboot
Hamid Safdarihamidsafdari.com·Jul 11, 2023QueryDSL for JPAIf we could say Hibernate provides a way to map database tables to classes, QueryDSL does the same for queries. QueryDSL lets you leverage the same entities defined for Hibernate and uses them to make legible queries that closely resemble native SQL ...306 readsjpa
Arnau Aregallaregall.tech·May 13, 2023Integration between Querydsl and Spring Data REST using Kotlin, Gradle and Spring Boot 3Overview This article will walk through the process of integrating Querydsl with an existing Spring Data REST API using Kotlin and Gradle. The goal is to demonstrate how to implement advanced querying and filtering features on a REST API without the ...3.0K readsSpring Data RESTKotlin