Skip to content

Commit

Permalink
[fix] querydsl 의존성 분리를 위한 설정 파일 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jun 26, 2024
1 parent ea20c6b commit 6aed4ad
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.pophory.pophorydomain.config

import com.querydsl.jpa.impl.JPAQueryFactory
import jakarta.persistence.EntityManager
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration

@Configuration
class JpaQueryFactoryConfig {
@Bean
fun jpaQueryFactory(entityManager: EntityManager): JPAQueryFactory {
return JPAQueryFactory(entityManager)
}
}

0 comments on commit 6aed4ad

Please sign in to comment.