Skip to content

Commit

Permalink
[REFACT] #724 Jpa 설정 클래스 통합
Browse files Browse the repository at this point in the history
  • Loading branch information
AYoungSn committed Mar 11, 2024
1 parent 388fc60 commit 0a74857
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@Configuration
@EnableJpaAuditing
@EnableJpaRepositories(basePackages = {"gg.repo", "gg.admin.repo"})
@EntityScan(basePackages = "gg.data")
public class JpaConfig {
Expand Down

0 comments on commit 0a74857

Please sign in to comment.