InterfaceController 패키지 경로 변경

main
이범준 8 months ago
parent 48925791d2
commit c4e82846e9

@ -1,4 +1,4 @@
package cokr.xit.fims.crdn.web;
package cokr.xit.fims.cmmn.web;
import java.util.List;
@ -14,7 +14,7 @@ import cokr.xit.base.web.ApplicationController;
import cokr.xit.fims.crdn.service.ImportService;
@Controller("fimsInterface")
@RequestMapping(value = "/intf/fims/smg", name = "국민 신문고 민원")
@RequestMapping(value = "/intf/fims", name = "연계")
public class InterfaceController extends ApplicationController {
@Resource(name = "importService")
private ImportService importService;
@ -26,7 +26,7 @@ public class InterfaceController extends ApplicationController {
* <li>saved - (true || false)</li>
* </ul>
*/
@PostMapping(value = "/petition/receive.do", name = "국민 신문고 민원 수신")
@PostMapping(value = "/smg/petition/receive.do", name = "국민 신문고 민원 수신")
public ModelAndView importSmgPetition(@RequestBody List<String> intfSeqs) {
boolean empty = isEmpty(intfSeqs);
log().debug("interfaceSequences received: {}", empty ? "none" : String.join(", ", intfSeqs));
Loading…
Cancel
Save