摘要: 官网下载 & 上传 & 解压 $ scp -P 22 nacos-server-2.0.3.tar.gz root@xxx.xxx.xxx.xx:/opt/ $ tar -xvf nacos-server-2.0.3.tar.gz Jdk配置(Jdk版本位11) ## vim startup.sh 阅读全文
posted @ 2021-11-14 12:05 ysloong 阅读(621) 评论(0) 推荐(0) 编辑
摘要: String String对象本身是不可变的,每次变更都会产生新的对象. String builder String builder 每次都是对自身的操作,不会产生新的对象.是多线程不安全的,适合单线程情况. 相比String buffer 效率高. String buffer String buf 阅读全文
posted @ 2021-11-01 19:00 ysloong 阅读(25) 评论(0) 推荐(0) 编辑
摘要: setting 中增加内存 file -- settings -- build、execution、deployment -- compiler -- Shared build process heap size(Mbytes) 2000(默认500) 阅读全文
posted @ 2021-10-22 17:53 ysloong 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 在本项目和父工程项目共同引入了jar 在子项目中排除父工程的引入,同时到本地maven仓库,将已经下载的jar删掉,重新部署 <dependency> <groupId>xxx.xxx</groupId> <artifactId>tool-common</artifactId> <version>x 阅读全文
posted @ 2021-10-22 17:49 ysloong 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 参考: 官网安装命令:[官网](https://www.postgresql.org/download/linux/redhat/) 安装命令解释[博客:](https://www.cnblogs.com/xingqiang/p/14147549.html) [本地能连接,远程无法连接问题(防火墙) 阅读全文
posted @ 2021-08-02 11:45 ysloong 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 从Linux服务器下载: scp root@192.168.xxx.xx:/sd_data/xx/xx/1420586450830628864.jpg /Users/xx/Desktop/ 上传到Linux服务器: scp -P 22 /Users/xxx/Documents/vue/xxx.tar 阅读全文
posted @ 2021-07-30 10:39 ysloong 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 需求: 业务中有许多项目,每个项目下都有xxx.test.yml文件,将xxx.test.yml 复制为xxx.test-container.yml 比如: /Users/bbb/Documents/aaa-openpay/common/aaa-config/src/main/resources/c 阅读全文
posted @ 2021-06-01 14:06 ysloong 阅读(61) 评论(0) 推荐(0) 编辑
摘要: // 获取控制字段列表 public static String[] getNullPropertyNames(Object source) { final BeanWrapper src = new BeanWrapperImpl(source); PropertyDescriptor[] pds 阅读全文
posted @ 2021-05-07 20:17 ysloong 阅读(3308) 评论(0) 推荐(0) 编辑
摘要: // 根据传入的字段列表,动态调用set方法方法 static <T> void newFieldAutoSet(T t,Map<String, Object> params, String ... newFields) throws Exception { try { for (String ne 阅读全文
posted @ 2021-05-07 20:05 ysloong 阅读(295) 评论(0) 推荐(0) 编辑
摘要: ~~~ -- 表名注释 select * from all_tab_comments where Table_Name='B_MERCH' and owner = 'POSP'; -- 表字段注释 select * from all_col_comments where Table_Name='B_ 阅读全文
posted @ 2021-04-25 15:08 ysloong 阅读(540) 评论(0) 推荐(0) 编辑