Dennis Chen d02147c7ee Bael-1601: move servlet redirect vs forward to spring-boot-bootstrap module (#3792)
* move servlet redirect vs forward to this module

* Added Unit test for servlets

* Cleaned Unit tests

* Refactored styling of the Java files.
2018-03-17 12:00:11 +00:00

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);
}
}