From 6dc678661600964144c5ed9a3e7a06ab2f4dc294 Mon Sep 17 00:00:00 2001 From: wenjinda Date: Sat, 17 Oct 2020 22:47:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20DemoApplication.java?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/demo/DemoApplication.java | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/main/java/com/example/demo/DemoApplication.java diff --git a/src/main/java/com/example/demo/DemoApplication.java b/src/main/java/com/example/demo/DemoApplication.java deleted file mode 100644 index a3127b4..0000000 --- a/src/main/java/com/example/demo/DemoApplication.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.example.demo; - -import org.springframework.boot.*; -import org.springframework.boot.autoconfigure.*; -import org.springframework.web.bind.annotation.*; - -@SpringBootApplication -@RestController -public class DemoApplication { - - @GetMapping("/") - String home() { - return "Spring is here!"; - } - - public static void main(String[] args) { - SpringApplication.run(DemoApplication.class, args); - } -} \ No newline at end of file -- GitLab