티스토리 뷰
새로 만든 프로젝트에 Querydsl 설정을 해보겠습니다.
- build.gradle
plugins {
id 'org.springframework.boot' version '2.4.1'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
// querydsl
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
}
group = 'io.alxxndr'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
//querydsl 추가
implementation 'com.querydsl:querydsl-jpa'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation ('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage’, module: ‘junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
//querydsl 추가 시작
def querydslDir = "$buildDir/generated/querydsl"
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
sourceSets {
main.java.srcDir querydslDir
}
configurations {
querydsl.extendsFrom compileClasspath }
compileQuerydsl {
options.annotationProcessorPath = configurations.querydsl
}
//querydsl 추가 끝
간단한 Entity로 검증
import lombok.Getter;
import lombok.Setter;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
@Getter @Setter
public class Hello {
@Id @GeneratedValue
private Long id;
}
QType Class 생성
프로젝트 경로에 QType Class확인
Test Code로 검증
@SpringBootTest
@Transactional
class SpringQuerydslApplicationTests {
@Autowired
EntityManager em;
@Test
void contextLoads() {
Hello hello = new Hello();
em.persist(hello);
JPAQueryFactory query = new JPAQueryFactory(em);
QHello qHello = new QHello("h");
Hello result = query.selectFrom(qHello)
.fetchOne();
Assertions.assertThat(result).isEqualTo(hello);
Assertions.assertThat(result.getId()).isEqualTo(hello.getId());
}
}
결과 성공이라면 Querydsl 설정이 된것입니다
참고
www.inflearn.com/course/Querydsl-%EC%8B%A4%EC%A0%84#
https://assertj.github.io/doc/
'Dev > Spring Data' 카테고리의 다른 글
[Querydsl] 4. 예제용 도메인 생성 (0) | 2021.01.19 |
---|---|
[Querydsl] 3. JPA yml 설정 (0) | 2021.01.19 |
[Querydsl] 2. H2 Database (0) | 2021.01.19 |
Querydsl 셋팅을 할 수 있다구요! (0) | 2020.08.11 |
BooleanExpression 다이나믹 쿼리 (0) | 2020.08.10 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- java11
- 스프링시큐리티
- ResourceHttpReqeustHandler
- booleanExpression
- 개발
- Python
- 스프링부트
- 자바
- Security
- JPA
- boot
- spring web
- ControllerAdvice
- paawordencoder
- API
- ubuntu
- FastAPI
- 웹서비스
- like절
- 스프링부트 시작하기
- Spring
- springboot
- QueryDSL
- 유사결과
- springsecurity
- Java
- @formula
- 스프링
- howtoinstallnginx
- mapstruct
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함