springcloud 用hystrixDashboard 监控某个方法时候,需要加@HystrixCommand在方法上才能监控

图片说明
@HystrixCommand
@GetMapping("/dept/list")
public List list(){
return deptService.getAll();
}

    怎么改成不需要每个方法都加注解

https://blog.csdn.net/maoyeqiu/article/details/78533727