JAVA-2380: Fix failing integration tests in the spring-data-jpa-enterprise
This commit is contained in:
parent
3ee0bb28ab
commit
96502d8626
|
@ -6,8 +6,8 @@ import org.springframework.boot.autoconfigure.domain.EntityScan;
|
|||
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
||||
|
||||
@SpringBootApplication
|
||||
@EnableJpaRepositories("com.baeldung")
|
||||
@EntityScan("com.baeldung")
|
||||
@EnableJpaRepositories("com.baeldung.boot")
|
||||
@EntityScan("com.baeldung.boot")
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
|
@ -4,7 +4,7 @@ import javax.persistence.*;
|
|||
import java.util.Set;
|
||||
|
||||
@Entity
|
||||
@Table(name = "users")
|
||||
@Table(name = "basic_users")
|
||||
public class BasicUser {
|
||||
|
||||
@Id
|
||||
|
|
Loading…
Reference in New Issue