CatalogController 调整
全局默认异步超时时间 3 min
This commit is contained in:
parent
7b3f2a57a2
commit
6202acb560
@ -12,6 +12,7 @@ import org.springframework.web.bind.MethodArgumentNotValidException;
|
|||||||
import org.springframework.web.bind.MissingServletRequestParameterException;
|
import org.springframework.web.bind.MissingServletRequestParameterException;
|
||||||
import org.springframework.web.bind.annotation.ExceptionHandler;
|
import org.springframework.web.bind.annotation.ExceptionHandler;
|
||||||
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
||||||
|
import org.springframework.web.context.request.async.AsyncRequestTimeoutException;
|
||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
@ -72,6 +73,12 @@ public class ExceptionAdvice {
|
|||||||
return JsonResponse.error("参数异常");
|
return JsonResponse.error("参数异常");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ExceptionHandler(AsyncRequestTimeoutException.class)
|
||||||
|
public JsonResponse<String> exception(AsyncRequestTimeoutException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return JsonResponse.error("请求超时");
|
||||||
|
}
|
||||||
|
|
||||||
@ExceptionHandler(Exception.class)
|
@ExceptionHandler(Exception.class)
|
||||||
public JsonResponse<String> exception(Exception e) {
|
public JsonResponse<String> exception(Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
@ -9,6 +9,7 @@ import io.swagger.v3.oas.annotations.tags.Tag;
|
|||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.SneakyThrows;
|
import lombok.SneakyThrows;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import org.springframework.web.context.request.async.DeferredResult;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.CompletableFuture;
|
import java.util.concurrent.CompletableFuture;
|
||||||
@ -22,8 +23,12 @@ public class CatalogController {
|
|||||||
|
|
||||||
@SneakyThrows
|
@SneakyThrows
|
||||||
@GetJson
|
@GetJson
|
||||||
public JsonResponse<List<?>> catalog(String gbDeviceId){
|
public DeferredResult<JsonResponse<List<?>>> catalog(String gbDeviceId){
|
||||||
|
DeferredResult<JsonResponse<List<?>>> result = new DeferredResult<>();
|
||||||
CompletableFuture<List<CatalogItemDTO>> catalog = catalogService.catalog(gbDeviceId);
|
CompletableFuture<List<CatalogItemDTO>> catalog = catalogService.catalog(gbDeviceId);
|
||||||
return JsonResponse.success(catalog.get());
|
catalog.whenComplete((data,throwable)->{
|
||||||
|
result.setResult(JsonResponse.success(data));
|
||||||
|
});
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,3 +3,7 @@ server:
|
|||||||
|
|
||||||
project:
|
project:
|
||||||
version: @project.version@
|
version: @project.version@
|
||||||
|
spring:
|
||||||
|
mvc:
|
||||||
|
async:
|
||||||
|
request-timeout: 3m
|
||||||
|
@ -24,6 +24,9 @@ spring:
|
|||||||
username: root
|
username: root
|
||||||
password: 12341234
|
password: 12341234
|
||||||
url: jdbc:mysql://10.10.10.200:3306/gb28181_docking_platform?createDatabaseIfNotExist=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://10.10.10.200:3306/gb28181_docking_platform?createDatabaseIfNotExist=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
||||||
|
mvc:
|
||||||
|
async:
|
||||||
|
request-timeout: 3m
|
||||||
|
|
||||||
gb28181:
|
gb28181:
|
||||||
# 作为28181服务器的配置
|
# 作为28181服务器的配置
|
||||||
@ -42,7 +45,7 @@ gb28181:
|
|||||||
# [可选]
|
# [可选]
|
||||||
domain: 4405010000
|
domain: 4405010000
|
||||||
# [可选]
|
# [可选]
|
||||||
id: 44050100002000000002
|
id: 44050100002000000003
|
||||||
# [可选] 默认设备认证密码,后续扩展使用设备单独密码, 移除密码将不进行校验
|
# [可选] 默认设备认证密码,后续扩展使用设备单独密码, 移除密码将不进行校验
|
||||||
password: 123456
|
password: 123456
|
||||||
# 是否存储alarm信息
|
# 是否存储alarm信息
|
||||||
@ -50,7 +53,7 @@ gb28181:
|
|||||||
|
|
||||||
media:
|
media:
|
||||||
ip: 10.10.10.200
|
ip: 10.10.10.200
|
||||||
url: 'http://10.10.10.200:5080'
|
url: 'http://10.10.10.200:5081'
|
||||||
# url: 'http://10.10.10.200:12580/anything/'
|
# url: 'http://10.10.10.200:12580/anything/'
|
||||||
id: amrWMKmbKqoBjRQ9
|
id: amrWMKmbKqoBjRQ9
|
||||||
secret: 4155cca6-2f9f-11ee-85e6-8de4ce2e7333
|
secret: 4155cca6-2f9f-11ee-85e6-8de4ce2e7333
|
||||||
|
Loading…
Reference in New Issue
Block a user