Refactoring the naming of Web thread pool controller class

pull/233/head
chen.ma 3 years ago
parent 337e4f6013
commit a79e724652

@ -30,9 +30,6 @@ import org.springframework.web.bind.annotation.*;
* Web thread pool controller. * Web thread pool controller.
* *
* <p> At present, only Tomcat is well supported, and other web containers need to be improved. * <p> At present, only Tomcat is well supported, and other web containers need to be improved.
*
* @author chen.ma
* @date 2022/1/19 20:54
*/ */
@CrossOrigin @CrossOrigin
@RestController @RestController

@ -32,15 +32,12 @@ import org.springframework.web.bind.annotation.RestController;
import java.util.List; import java.util.List;
/** /**
* Pool run state controller. * Web thread-pool run state controller.
*
* @author chen.ma
* @date 2021/7/7 21:34
*/ */
@CrossOrigin @CrossOrigin
@RestController @RestController
@AllArgsConstructor @AllArgsConstructor
public class PoolRunStateController { public class WebThreadPoolRunStateController {
private final ThreadPoolRunStateHandler threadPoolRunStateHandler; private final ThreadPoolRunStateHandler threadPoolRunStateHandler;
Loading…
Cancel
Save