2018-12-09 20:36:56 +02:00
|
|
|
package com.baeldung;
|
2017-06-12 22:12:54 +02:00
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
2018-03-17 08:00:11 -04:00
|
|
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
2017-06-12 22:12:54 +02:00
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
|
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
|
|
|
|
|
2018-03-17 08:00:11 -04:00
|
|
|
@ServletComponentScan
|
2017-06-12 22:12:54 +02:00
|
|
|
@SpringBootApplication
|
2018-12-09 20:36:56 +02:00
|
|
|
@ComponentScan("com.baeldung")
|
|
|
|
|
@EnableJpaRepositories("com.baeldung.persistence.repo")
|
|
|
|
|
@EntityScan("com.baeldung.persistence.model")
|
2017-06-12 22:12:54 +02:00
|
|
|
public class Application {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(Application.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|