|
|
@@ -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 {
|
|
|
|