摘要: 〇、参考地址 1、pg官方文档 http://www.postgres.cn/docs/9.6/index.html 2、腾讯云仓pg文档 https://cloud.tencent.com/document/product/878/33571 3、阿里云数据库RDS PostgreSQL 版 ht 阅读全文
posted @ 2022-11-26 11:53 哥们要飞 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 一、Linux 1、系统信息【左1】 查看磁盘空间使用情况:df+参数 查看当前指定文件或目录的大小:du 查看不同硬件信息:cat/proc/xxx 查看系统和空闲内存:free +参数 SSH退出后程序继续运行:disown或nohup command & 2、搜索文件、权限【左2】 查看文件大 阅读全文
posted @ 2022-09-24 09:47 哥们要飞 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 一、实用工具/网站 1、PHP中文网:https://www.php.cn/ 2、Json工具:http://www.bejson.com/ 3、IT大哥导航:https://itdage.com/ 4、Java学习路线及教程:https://blog.csdn.net/qq_35461287/ar 阅读全文
posted @ 2021-03-02 00:04 哥们要飞 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 一、查询单张表 1.1 根据表名查询表结构 --快速查看表结构(比较全面的) DECLARE @tableName NVARCHAR(MAX); SET @tableName = N'YMUS'; --表名!!! SELECT CASE WHEN col.colorder = 1 THEN obj. 阅读全文
posted @ 2023-10-23 09:39 哥们要飞 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 涉及组件:MySQL/Hadoop/Hive/Spark/Sqoop/DolphinScheduler/Zookeeper/Kafka/DataX…… 仓库地址:https://gitee.com/ljhahu/docker2all.git 阅读全文
posted @ 2023-08-22 20:48 哥们要飞 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 〇、参考链接 1、常用的Markdown软件对比 https://blog.csdn.net/best_luxi/article/details/121786709 一、打开微小宝 1、下载地址 https://www.wxb.com/ 2、注册登录 3、扫码登录 二、导入博客链接 1、进入编辑器 阅读全文
posted @ 2022-12-04 23:19 哥们要飞 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 〇、参考地址 1、Linux下编写脚本自动安装hive https://blog.csdn.net/weixin_44911081/article/details/121227024?ops_request_misc=%257B%2522request%255Fid%2522%253A%252216 阅读全文
posted @ 2022-12-04 22:26 哥们要飞 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 〇、参考资料 1、springboot整合log4j全过程详解 https://blog.csdn.net/m0_60845963/article/details/123307232 2、Spring Boot 全局排除 spring-boot-starter-logging 依赖 https:// 阅读全文
posted @ 2022-12-02 00:43 哥们要飞 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 〇、参考资料 1、Spring Boot 中文乱码问题解决方案汇总 https://blog.51cto.com/u_15236724/5372824 2、spring boot读取自定义配置properties文件★ https://www.yisu.com/zixun/366877.html 3 阅读全文
posted @ 2022-12-01 01:00 哥们要飞 阅读(764) 评论(0) 推荐(0) 编辑
摘要: 〇、参考资料 1、hutool介绍 https://blog.csdn.net/abst122/article/details/124091375 2、Spring Boot+Mybatis实现登录注册 https://www.cnblogs.com/wiki918/p/16221758.html 阅读全文
posted @ 2022-11-30 01:06 哥们要飞 阅读(624) 评论(0) 推荐(0) 编辑
摘要: 〇、参考地址 1、多个Excel实现同步 https://www.wangt.cc/2021/05/kettle%E5%A4%9A%E4%B8%AA%E8%A1%A8%E4%B8%80%E8%B5%B7%E8%BF%81%E7%A7%BB-%E9%80%9A%E8%BF%87%E9%85%8D%E7 阅读全文
posted @ 2022-11-26 10:22 哥们要飞 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 一、枚举类编写ResponseCode package com.boulderaitech.common; /** * 编写枚举类的步骤 * (1)编写所需的变量 * (2)编写枚举类构造方法 * (3)编写枚举的值,调用构造方法,使用逗号隔开 * (4)编写方法获取枚举类中对应的值 */ publ 阅读全文
posted @ 2022-11-12 17:05 哥们要飞 阅读(74) 评论(0) 推荐(0) 编辑