|
@@ -6,9 +6,13 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
+import io.swagger.annotations.Api;
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
|
+
|
|
import com.dbs.consentServer.consentVO.TestVO;
|
|
import com.dbs.consentServer.consentVO.TestVO;
|
|
import com.dbs.consentServer.service.TestService;
|
|
import com.dbs.consentServer.service.TestService;
|
|
|
|
|
|
|
|
+@Api(tags = {"1. ConsentService "})
|
|
@RestController
|
|
@RestController
|
|
public class ConsentSvc {
|
|
public class ConsentSvc {
|
|
|
|
|
|
@@ -22,6 +26,7 @@ public class ConsentSvc {
|
|
@Autowired
|
|
@Autowired
|
|
TestService testService;
|
|
TestService testService;
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "테스트 URI", notes = "테스트 URI 입니다.")
|
|
@RequestMapping(value = "/test")
|
|
@RequestMapping(value = "/test")
|
|
public void test() throws Exception {
|
|
public void test() throws Exception {
|
|
logger.error("test");
|
|
logger.error("test");
|