source: Git/src/main/java/com/wediscussmovies/project/WeDiscussMoviesApplication.java@ 3ded84d

main
Last change on this file since 3ded84d was 3ded84d, checked in by Test <matonikolov77@…>, 2 years ago

Model-database resolved bugs for mapping

  • Property mode set to 100644
File size: 517 bytes
Line 
1package com.wediscussmovies.project;
2
3import org.springframework.beans.factory.annotation.Autowired;
4import org.springframework.boot.CommandLineRunner;
5import org.springframework.boot.SpringApplication;
6import org.springframework.boot.autoconfigure.SpringBootApplication;
7import org.springframework.jdbc.core.JdbcTemplate;
8
9@SpringBootApplication
10public class WeDiscussMoviesApplication {
11
12 public static void main(String[] args) {
13
14 SpringApplication.run(WeDiscussMoviesApplication.class, args);
15 }
16
17
18}
Note: See TracBrowser for help on using the repository browser.