Done ticket GEPAFINBE-3
This commit is contained in:
@@ -2,12 +2,21 @@ package net.gepafin.tendermanagement;
|
||||
|
||||
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;
|
||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||
|
||||
@EnableScheduling
|
||||
@ComponentScan(basePackages = {"net.gepafin.tendermanagement"})
|
||||
@EnableJpaRepositories(basePackages = {"net.gepafin.tendermanagement"})
|
||||
@EntityScan(basePackages = {"net.gepafin.tendermanagement"})
|
||||
@SpringBootApplication
|
||||
public class TendermanagementApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(TendermanagementApplication.class, args);
|
||||
System.out.println("Spring Boot started");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user