feat : 사용하지 않는 모듈 제거

This commit is contained in:
liquidjoo
2020-08-04 11:01:26 +09:00
parent 593d4b66dd
commit bd4a0708cf
48 changed files with 6 additions and 2025 deletions

View File

@@ -66,20 +66,7 @@ public class TestServiceApplication {
public String helloMk2Secret(Principal principal) {
return principal == null ? "hello anonymous" : "heelo" + principal.getName();
}
@RequestMapping(method = RequestMethod.GET, value = "test")
@ResponseBody
public String test() {
return "test";
}
}
@RestController("/tests")
public static class TestController2 {
@RequestMapping(method = RequestMethod.DELETE)
public void test(@RequestParam String test) {
System.out.println(test);
}
}
}

View File

@@ -4,6 +4,7 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.web.bind.annotation.RequestParam;
@RunWith(SpringRunner.class)
@SpringBootTest
@@ -14,3 +15,7 @@ public class TestServiceApplicationTests {
}
}