ソースを参照

Exception advice

wfansh 6 ヶ月 前
コミット
53a8fd75e0

+ 1 - 1
src/main/java/com/wechi/adweb/bridge/exception/ExceptionAdvice.java

@@ -27,7 +27,7 @@ public class ExceptionAdvice {
      */
     @ResponseBody
     @ResponseStatus(HttpStatus.BAD_REQUEST)
-    @ExceptionHandler({DataException.class})
+    @ExceptionHandler({BadRequestException.class})
     public OpenAPIResponse<?> handleBadRequestException(BadRequestException e) {
         log.error(Objects.toString(e.getApiRequest()), e);
 

+ 3 - 4
src/main/java/com/wechi/adweb/bridge/google/analytics/controller/GAController.java

@@ -17,9 +17,7 @@ import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.util.CollectionUtils;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 
 import java.util.List;
 import java.util.Objects;
@@ -35,7 +33,8 @@ public class GAController extends BaseController {
 
     private final Gson gson = new Gson();
 
-    @RequestMapping("/report")
+    @PostMapping("/report")
+    @ResponseBody
     public OpenAPIResponse<List<? extends GAReportDataDTO>> getGAReport(
             @RequestBody OpenAPIRequest<GAReportRequestDTO> apiRequest)
             throws BadRequestException, DataException {