* move servlet redirect vs forward to this module * Added Unit test for servlets * Cleaned Unit tests * Refactored styling of the Java files.
		
			
				
	
	
		
			22 lines
		
	
	
		
			729 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			729 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.boot.web.servlet.ServletComponentScan;
 | |
| import org.springframework.context.annotation.ComponentScan;
 | |
| import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
 | |
| 
 | |
| @ServletComponentScan
 | |
| @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);
 | |
|     }
 | |
| 
 | |
| }
 |