We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2aabd9 commit 8cef0cbCopy full SHA for 8cef0cb
src/main/java/kr/hhplus/be/server/presentation/deploytest/DeployTestController.java
@@ -0,0 +1,20 @@
1
+package kr.hhplus.be.server.presentation.deploytest;
2
+
3
+import org.springframework.validation.annotation.Validated;
4
+import org.springframework.web.bind.annotation.GetMapping;
5
+import org.springframework.web.bind.annotation.RequestMapping;
6
+import org.springframework.web.bind.annotation.RestController;
7
8
+import lombok.RequiredArgsConstructor;
9
10
+@RestController
11
+@RequestMapping("/api/v1/deploy")
12
+@RequiredArgsConstructor
13
+@Validated
14
+public class DeployTestController {
15
16
+ @GetMapping("/")
17
+ public String deployTest() {
18
+ return "Successful deploy";
19
+ }
20
+}
0 commit comments