일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 자바공부
- Flutter
- 카프카
- JPA
- nestjs
- 스프링공부
- K8S
- 기술공부
- 알고리즘공부
- querydsl
- nestjs공부
- nestjs스터디
- 기술면접공부
- Kafka
- 프로그래머스
- 스프링
- JPA스터디
- Axon framework
- 스프링부트공부
- 스프링부트
- JPA 공부
- 코테공부
- 코테준비
- JPA공부
- 플러터 공부
- 스프링 공부
- DDD
- 플러터 개발
- 자료구조공부
- JPA예제
- Today
- Total
목록QUeryDSL예제 (2)
DevBoi
사용을 위한 기본구성 1. JpaFactory package com.practice.demo.config; import com.querydsl.jpa.impl.JPAQueryFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import javax.persistence.EntityManager; @Configuration public class JpaFactory { @Autowired EntityManager em; @Bean ..
1. Build.gradle에 추가 // QueryDSL로 주석 처리한 부분만 신경쓰면된다. // QueryDSL buildscript { ext { queryDslVersion = "5.0.0" } } plugins { id 'java' id 'org.springframework.boot' version '2.7.12-SNAPSHOT' id 'io.spring.dependency-management' version '1.0.15.RELEASE' // QueryDSL id "com.ewerk.gradle.plugins.querydsl" version "1.0.10" } group = 'com.study' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' co..