@Resource(name = "autoKeeperClusterService")
private AutoKeeperClusterService autoKeeperClusterService;
public void execute(@Param("canalId") Long canalId, Context context) throws Exception {
Canal canal = canalService.findById(canalId);
AutoKeeperCluster zkCluster = autoKeeperClusterService.findAutoKeeperClusterById(canal.getCanalParameter().getZkClusterId());
context.put("canal", canal);
context.put("zkCluster", zkCluster);
}