source: source/src/main/java/com/example/db/DbApplication.java@ bc0eeb4

Last change on this file since bc0eeb4 was bc0eeb4, checked in by Evgenija2000 <eva_nikolaevska@…>, 21 months ago

all files

  • Property mode set to 100644
File size: 452 bytes
Line 
1package com.example.db;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
5import org.springframework.boot.web.servlet.ServletComponentScan;
6import org.springframework.context.annotation.Bean;
7
8@ServletComponentScan
9@SpringBootApplication
10public class DbApplication {
11
12 public static void main(String[] args) {
13 SpringApplication.run(DbApplication.class, args);
14 }
15
16
17}
Note: See TracBrowser for help on using the repository browser.