Last change
on this file was bc0eeb4, checked in by Evgenija2000 <eva_nikolaevska@…>, 2 years ago |
all files
|
-
Property mode
set to
100644
|
File size:
452 bytes
|
Line | |
---|
1 | package com.example.db;
|
---|
2 |
|
---|
3 | import org.springframework.boot.SpringApplication;
|
---|
4 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
5 | import org.springframework.boot.web.servlet.ServletComponentScan;
|
---|
6 | import org.springframework.context.annotation.Bean;
|
---|
7 |
|
---|
8 | @ServletComponentScan
|
---|
9 | @SpringBootApplication
|
---|
10 | public 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.