2017-06-12 22:12:54 +02:00
|
|
|
package org.baeldung;
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
@ComponentScan("org.baeldung")
|
|
|
|
|
@EnableJpaRepositories("org.baeldung.persistence.repo")
|
|
|
|
|
@EntityScan("org.baeldung.persistence.model")
|
|
|
|
|
public class Application {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(Application.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|