| | |
| | | WebSocketDeploymentInfo webSocketDeploymentInfo = new WebSocketDeploymentInfo(); |
| | | webSocketDeploymentInfo.setBuffers(new DefaultByteBufferPool(false, 512)); |
| | | deploymentInfo.addServletContextAttribute("io.undertow.websockets.jsr.WebSocketDeploymentInfo", webSocketDeploymentInfo); |
| | | // 使用虚拟线程 解除下方注释 仅限jdk21 |
| | | // if (SpringUtils.isVirtual()) { |
| | | // ExecutorService executor = Executors.newVirtualThreadPerTaskExecutor(); |
| | | // deploymentInfo.setExecutor(executor); |
| | | // deploymentInfo.setAsyncExecutor(executor); |
| | | // } |
| | | }); |
| | | } |
| | | |