Skip to content

Commit

Permalink
fix : QueryDslConfig 하나삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
seulgi99 committed Oct 9, 2023
1 parent 55d5053 commit ff6a821
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,11 @@
import org.springframework.context.annotation.Configuration;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

@Configuration
public class QueryDslConfig {

@PersistenceContext
private EntityManager entityManager;

@Bean
public JPAQueryFactory jpaQueryFactory () {
public JPAQueryFactory jpaQueryFactory(EntityManager entityManager) {
return new JPAQueryFactory(entityManager);
}
}

This file was deleted.

0 comments on commit ff6a821

Please sign in to comment.