* BAEL-5986 - Getting Started with Blaze Persistence * Optimize imports * Fix test class name * Switch to JUnit5 * Removed dependencies and Controller classes * Update pom.xml * Update Configuration class
16 lines
515 B
Java
16 lines
515 B
Java
package com.baeldung;
|
|
|
|
import com.blazebit.persistence.integration.view.spring.EnableEntityViews;
|
|
import com.blazebit.persistence.spring.data.repository.config.EnableBlazeRepositories;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
@ComponentScan("com.baeldung")
|
|
@EnableEntityViews(basePackages = {"com.baeldung.view"})
|
|
@EnableBlazeRepositories(basePackages = "com.baeldung.repository")
|
|
public class TestContextConfig {
|
|
|
|
|
|
}
|