2023年7月8日

自定义安全校验组件的使用--DialogSecurity

摘要: 1、引入自定义安全组件 components: { DialogSecurity: () => import('@/views/DialogSecurity') }, 2、引入自定义组件标签 <!--校验操作密码--> <dialog-security ref="dialogSecurity" ca 阅读全文

posted @ 2023-07-08 14:30 //君莫笑 阅读(31) 评论(0) 推荐(0)

2023年6月21日

安装docker

摘要: 1.查看内核版本,Docker 运行在 CentOS 7 上,要求系统为64位、系统内核版本为 3.10 以上。 uname -r 安装 Docker yum -y install docker 启动 Docker 后台服务 service docker start 安装yum工具 yum inst 阅读全文

posted @ 2023-06-21 16:27 //君莫笑 阅读(24) 评论(0) 推荐(0)

2023年6月14日

Vue自定义校验

摘要: age: [ {required: true, message: '请输入年龄', trigger: 'blur'}, { validator: (rule, value, callback) => { if (value >= 18) { callback(); } else { callback 阅读全文

posted @ 2023-06-14 23:37 //君莫笑 阅读(74) 评论(0) 推荐(0)

2023年5月27日

Nginx编译安装2

摘要: 1.进入安装目录: # cd /usr/local/src 2、下载nginx源码文件 nginx网址:http://nginx.org/en/download.html 3、复制文件下载地址:http://nginx.org/download/nginx-1.22.1.tar.gz 4、开始下载: 阅读全文

posted @ 2023-05-27 22:23 //君莫笑 阅读(63) 评论(0) 推荐(0)

2023年5月22日

Linux查看运行中的Jar文件

摘要: 1. jar包的运行 java -jar xxx.jar :当前ssh窗口被锁定,不可进行其它操作,ctrl + c或直接关闭窗口停止程序; java -jar xxxxx.jar & : 当前ssh窗口不被锁定,可进行其它操作,当窗口关闭时,程序退出; nohup java -jar xxx.ja 阅读全文

posted @ 2023-05-22 00:10 //君莫笑 阅读(5411) 评论(0) 推荐(0)

2023年5月21日

Linux 安装配置Java

摘要: 1、下载文件Java jdk-8u371-linux-x64.tar.gz 2、上传并解压文件 # tar -zxvf jdk-8u371-linux-x64.tar.gz 3、配置环境变量 #Java export JAVA_HOME=/usr/local/jdk1.8.0_371 export 阅读全文

posted @ 2023-05-21 23:34 //君莫笑 阅读(111) 评论(0) 推荐(0)

2023年5月15日

Nginx编译安装

摘要: 1.进入安装目录: #cd /usr/local/src 2、下载nginx源码文件 nginx网址:http://nginx.org/en/download.html 3、复制文件下载地址:http://nginx.org/download/nginx-1.22.1.tar.gz 4、开始下载: 阅读全文

posted @ 2023-05-15 13:33 //君莫笑 阅读(102) 评论(0) 推荐(0)

2023年3月22日

Intent.setDataAndType参数

摘要: {".3gp", "video/3gpp"}, ​ {".apk", "application/vnd.android.package-archive"}, ​ {".asf", "video/x-ms-asf"}, ​ {".avi", "video/x-msvideo"}, ​ {".bin", 阅读全文

posted @ 2023-03-22 22:34 //君莫笑 阅读(86) 评论(0) 推荐(0)

2023年3月12日

Android布局

摘要: RelativeLayout 根据父级定位 android:layout_alignParentLeft="true" 父容器左边 android:layout_alignParentRight="true" 父容器右边 android:layout_alignParentTop="true" 父容 阅读全文

posted @ 2023-03-12 15:04 //君莫笑 阅读(31) 评论(0) 推荐(0)

2023年2月19日

Java工程问题:Could not autowire. No beans of 'AttachmentMapper' type found.

摘要: 在mapper类前面加上 @Mapper @Mapper public interface FilesMapper { int delete(Integer fileId); int insert(Files record); Files select(Integer fileId); List<F 阅读全文

posted @ 2023-02-19 12:03 //君莫笑 阅读(32) 评论(0) 推荐(0)

导航