BAEL-5986 - Getting Started with Blaze Persistence (#13107)
* 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
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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 {
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user