1
|
package vldc.aswi;
|
2
|
|
3
|
import org.springframework.boot.SpringApplication;
|
4
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
5
|
import org.springframework.context.annotation.Import;
|
6
|
|
7
|
import vldc.aswi.configuration.AppConfig;
|
8
|
import vldc.aswi.configuration.DbConfig;
|
9
|
|
10
|
/**
|
11
|
* Main class.
|
12
|
*/
|
13
|
@SpringBootApplication
|
14
|
@Import({
|
15
|
AppConfig.class,
|
16
|
DbConfig.class
|
17
|
})
|
18
|
public class AswiJpa {
|
19
|
|
20
|
/**
|
21
|
* Main method.
|
22
|
* @param args - Input arguments.
|
23
|
*/
|
24
|
public static void main(String[] args) {
|
25
|
SpringApplication.run(AswiJpa.class, args);
|
26
|
}
|
27
|
|
28
|
}
|