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 |
|
|
@SpringBootApplication
|
11 |
|
|
@Import({
|
12 |
|
|
AppConfig.class,
|
13 |
|
|
DbConfig.class
|
14 |
|
|
})
|
15 |
|
|
public class AswiJpa {
|
16 |
|
|
|
17 |
|
|
public static void main(String[] args) {
|
18 |
|
|
SpringApplication.run(AswiJpa.class, args);
|
19 |
|
|
}
|
20 |
|
|
|
21 |
|
|
}
|