22 lines
729 B
Java
22 lines
729 B
Java
package com.baeldung;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
|
|
|
@ServletComponentScan
|
|
@SpringBootApplication
|
|
@ComponentScan("com.baeldung")
|
|
@EnableJpaRepositories("com.baeldung.persistence.repo")
|
|
@EntityScan("com.baeldung.persistence.model")
|
|
public class Application {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(Application.class, args);
|
|
}
|
|
|
|
}
|