20 lines
		
	
	
		
			641 B
		
	
	
	
		
			Java
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			641 B
		
	
	
	
		
			Java
		
	
	
	
	
	
|  | package org.baeldung;
 | ||
|  | 
 | ||
|  | import org.springframework.boot.SpringApplication;
 | ||
|  | import org.springframework.boot.autoconfigure.SpringBootApplication;
 | ||
|  | import org.springframework.boot.autoconfigure.domain.EntityScan;
 | ||
|  | import org.springframework.context.annotation.ComponentScan;
 | ||
|  | import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
 | ||
|  | 
 | ||
|  | @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);
 | ||
|  |     }
 | ||
|  | 
 | ||
|  | }
 |