摘要: 方法一: Select object_name From user_objects Where object_type='TRIGGER'; --所有触发器 Select object_name From user_objects Where object_type='PROCEDURE'; --所 阅读全文
posted @ 2020-03-10 17:58 love______feng 阅读(2712) 评论(0) 推荐(0) 编辑
摘要: 注意一下,安装的命令是这样的 npm install -g @vue/cli,建议使用cnpm源进行安装。 npm install -g cnpm --registry=https://registry.npm.taobao.org 然后,再使用cnpm安装:cnpm install -g @vue 阅读全文
posted @ 2020-02-25 15:15 love______feng 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 如果安装vnc出现以下情况: [root@homeserver system]# systemctl start vncserver@:1.service Job for vncserver@:1.service failed because the control process exited w 阅读全文
posted @ 2020-02-21 11:18 love______feng 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 私有Docker Registry的部署和配置 1 docker pull registry //获取registry镜像文件 2 3 docker images //查看本地的registry镜像文件 4 REPOSITORY TAG IMAGE ID CREATED SIZE 5 registr 阅读全文
posted @ 2020-02-21 11:14 love______feng 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Linux的时间分为System Clock(系统时间)和Real Time Clock (硬件时间,简称RTC)。 系统时间:指当前Linux Kernel中的时间。 硬件时间:主板上有电池供电的时间。 查看系统时间的命令: #date 设置系统时间的命令: #date –set(月/日/年 时: 阅读全文
posted @ 2020-02-21 11:13 love______feng 阅读(1739) 评论(0) 推荐(0) 编辑
摘要: 按ESC键 跳到命令模式,然后: :w 保存文件但不退出vi :w file 将修改另外保存到file中,不退出vi :w! 强制保存,不推出vi :wq 保存文件并退出vi :wq! 强制保存文件,并退出vi q: 不保存文件,退出vi :q! 不保存文件,强制退出vi :e! 放弃所有修改,从上 阅读全文
posted @ 2020-02-21 11:10 love______feng 阅读(2987) 评论(0) 推荐(0) 编辑
摘要: linux系统的基本指令 http://www.cnblogs.com/sxdcgaq8080/p/7470796.html 操作链接 https://www.cnblogs.com/sxdcgaq8080/p/7492426.html Linux上一般会安装Open JDK,关于OpenJDK和J 阅读全文
posted @ 2020-02-21 11:07 love______feng 阅读(177) 评论(0) 推荐(0) 编辑
摘要: sudo ssh 119.23.229.243 ssh的一些常用命令: 使用root账号登录指定ip的服务器。下面需要把ip换成你自己服务器的ip。 ssh root@ip 如果服务器使用的不是标准端口,比如是4567端口,则是: ssh root@ip -p 4567 ssh root@119.2 阅读全文
posted @ 2020-02-21 11:01 love______feng 阅读(344) 评论(0) 推荐(0) 编辑
摘要: org.apache.commons.lang.StringUtils 类提供了 String 的常用操作,最为常用的判空有如下两种 isEmpty(String str) 和 isBlank(String str)。 分析 我们通过源码来分析区别: 1 public static boolean 阅读全文
posted @ 2020-02-21 10:58 love______feng 阅读(212) 评论(0) 推荐(0) 编辑
摘要: getYear() int 获取当前日期的年份 getMonth() Month 获取当前日期的月份对象 getMonthValue() int 获取当前日期是第几月 getDayOfWeek() DayOfWeek 表示该对象表示的日期是星期几 getDayOfMonth() int 表示该对象表 阅读全文
posted @ 2020-02-21 10:54 love______feng 阅读(613) 评论(0) 推荐(0) 编辑