From 46a72e63c0bc82b9df6d1a3f1870cc0240999ee9 Mon Sep 17 00:00:00 2001 From: ZhouXY108 Date: Thu, 15 Dec 2022 11:38:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20TestController=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/xyz/zhouxy/plusone/TestController.java | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 plusone-start/src/main/java/xyz/zhouxy/plusone/TestController.java diff --git a/plusone-start/src/main/java/xyz/zhouxy/plusone/TestController.java b/plusone-start/src/main/java/xyz/zhouxy/plusone/TestController.java deleted file mode 100644 index 4e1ea42..0000000 --- a/plusone-start/src/main/java/xyz/zhouxy/plusone/TestController.java +++ /dev/null @@ -1,12 +0,0 @@ -package xyz.zhouxy.plusone; - -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -@RestController -public class TestController { - @RequestMapping("/test") - public String test() throws Exception { - throw new Exception(); - } -}