moon пре 5 година
родитељ
комит
ad0f5cab4e
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      src/main/java/com/style24/scm/biz/web/TssDeliveryController.java

+ 2 - 1
src/main/java/com/style24/scm/biz/web/TssDeliveryController.java

@@ -13,6 +13,7 @@ import org.springframework.util.StreamUtils;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.ResponseBody;
 import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
 import com.gagaframework.web.parameter.GagaMap;
 import com.gagaframework.web.parameter.GagaMapList;
 import com.style24.persistence.domain.SweetTracker;
@@ -45,7 +46,7 @@ public class TssDeliveryController extends TssBaseController {
 	 * @author moon
 	 * @since 2021. 04. 13
 	 */
-	@PostMapping(value = "/sweettracker/response")
+	@RequestMapping(value = "/sweettracker/response" , method = RequestMethod.POST)
 	@ResponseBody
 	public void sweetTrackerResponse(HttpServletRequest request, HttpServletResponse response) throws Exception {