BAEL-20862: Move spring-boot-crud into spring-boot-modules

This commit is contained in:
Krzysiek
2020-01-30 21:53:43 +01:00
parent b479e97f2e
commit aac38180dc
14 changed files with 378 additions and 379 deletions

View File

@@ -0,0 +1,23 @@
package com.baeldung.crud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@SpringBootApplication
@EnableAutoConfiguration
@ComponentScan(basePackages={"com.baeldung.crud"})
@EnableJpaRepositories(basePackages="com.baeldung.crud.repositories")
@EnableTransactionManagement
@EntityScan(basePackages="com.baeldung.crud.entities")
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}