会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ysloong
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
下一页
2021年11月14日
nacos Linux 单机模式配置
摘要: 官网下载 & 上传 & 解压 $ 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
阅读(643)
评论(0)
推荐(0)
2021年11月1日
Java基础-01 String、StringBuffer、StringBuilder
摘要: String String对象本身是不可变的,每次变更都会产生新的对象. String builder String builder 每次都是对自身的操作,不会产生新的对象.是多线程不安全的,适合单线程情况. 相比String buffer 效率高. String buffer String buf
阅读全文
posted @ 2021-11-01 19:00 ysloong
阅读(30)
评论(0)
推荐(0)
2021年10月22日
idea 部署项目太慢,增加内存
摘要: setting 中增加内存 file -- settings -- build、execution、deployment -- compiler -- Shared build process heap size(Mbytes) 2000(默认500)
阅读全文
posted @ 2021-10-22 17:53 ysloong
阅读(604)
评论(0)
推荐(0)
spring cloud 父工程、子工程 jar包冲突导致找不到构建失败
摘要: 在本项目和父工程项目共同引入了jar 在子项目中排除父工程的引入,同时到本地maven仓库,将已经下载的jar删掉,重新部署 <dependency> <groupId>xxx.xxx</groupId> <artifactId>tool-common</artifactId> <version>x
阅读全文
posted @ 2021-10-22 17:49 ysloong
阅读(318)
评论(0)
推荐(0)
2021年8月2日
Centos8 上安装postgresql-13
摘要: 参考: 官网安装命令:[官网](https://www.postgresql.org/download/linux/redhat/) 安装命令解释[博客:](https://www.cnblogs.com/xingqiang/p/14147549.html) [本地能连接,远程无法连接问题(防火墙)
阅读全文
posted @ 2021-08-02 11:45 ysloong
阅读(238)
评论(0)
推荐(0)
2021年7月30日
Mac 上下载 Linux 系统里面的文件命令
摘要: 从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
阅读(356)
评论(0)
推荐(0)
2021年6月1日
文件批量重命名
摘要: 需求: 业务中有许多项目,每个项目下都有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
阅读(67)
评论(0)
推荐(0)
2021年5月7日
BeanUtils.copyProperties 忽略null值
摘要: // 获取控制字段列表 public static String[] getNullPropertyNames(Object source) { final BeanWrapper src = new BeanWrapperImpl(source); PropertyDescriptor[] pds
阅读全文
posted @ 2021-05-07 20:17 ysloong
阅读(3549)
评论(0)
推荐(0)
根据传入的字段列表,动态调用set方法方法
摘要: // 根据传入的字段列表,动态调用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
阅读(317)
评论(0)
推荐(0)
2021年4月25日
Oracle 获取表注释、字段注释
摘要: ~~~ -- 表名注释 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
阅读(566)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告