1 |
26342eaf
|
Vojtěch Danišík
|
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 |
ba8b306a
|
Vojtěch Danišík
|
/**
|
11 |
|
|
* Main class.
|
12 |
|
|
*/
|
13 |
26342eaf
|
Vojtěch Danišík
|
@SpringBootApplication
|
14 |
|
|
@Import({
|
15 |
|
|
AppConfig.class,
|
16 |
|
|
DbConfig.class
|
17 |
|
|
})
|
18 |
|
|
public class AswiJpa {
|
19 |
|
|
|
20 |
ba8b306a
|
Vojtěch Danišík
|
/**
|
21 |
|
|
* Main method.
|
22 |
|
|
* @param args - Input arguments.
|
23 |
|
|
*/
|
24 |
26342eaf
|
Vojtěch Danišík
|
public static void main(String[] args) {
|
25 |
|
|
SpringApplication.run(AswiJpa.class, args);
|
26 |
|
|
}
|
27 |
|
|
|
28 |
|
|
}
|