/**
* Hive执行器 1:失败 0:成功
* Created by Ma·JJ on 2021-04-15
*/
@Component
public class HiveConnectUtils {
@Autowired
private JdbcTemplate jdbcTemplate;
public static HiveConnectUtils hiveConnectUtils;
@PostConstruct
public void init() {
hiveConnectUtils = this;
hiveConnectUtils.jdbcTemplate = this.jdbcTemplate;
}
}
原文:https://www.cnblogs.com/annong/p/14803718.html