上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页
摘要: 先内部使用order by方式排好序+LIMIT 99999999,外层再用group by分组 例如 SELECT a.* FROM (SELECT id,PersonName,TIME,X,Y,Z,createtime FROM person_position ORDER BY TIME DES 阅读全文
posted @ 2021-12-24 16:31 _Lawrence 阅读(747) 评论(1) 推荐(0)
摘要: 1、添加依赖 npm install --save @riophae/vue-treeselect 示例代码 <template> <div id="app"> <treeselect v-model="value" :multiple="true" :options="options" /> </ 阅读全文
posted @ 2021-12-14 15:55 _Lawrence 阅读(804) 评论(0) 推荐(0)
摘要: 将jar包和Dockerfile文件放同一目录下。 Dockerfile: FROM java:8 ADD web-0.0.1-SNAPSHOT.jar app.jar EXPOSE 8080 ENTRYPOINT ["java","-jar","/app.jar"] 打包: docker buil 阅读全文
posted @ 2021-12-02 16:41 _Lawrence 阅读(289) 评论(0) 推荐(0)
摘要: 其中“-rw-r--r--”表示权限,一共有十个字符。 第一组为本身具有的权限。第二组为所属用户的用户组其他成员的权限。第三组为其他用户的权限。 第一个字符,如果是“-”则表示是文件,如果是“d”则表示是目录,如上是目录。 每一组信息如“rw-”,每一个字符都有它自己的特定含义且先后位置是固定的,其 阅读全文
posted @ 2021-12-02 15:55 _Lawrence 阅读(621) 评论(0) 推荐(0)
摘要: npm cache clean --force删除项目中的node_modules文件夹npm install 阅读全文
posted @ 2021-11-25 17:42 _Lawrence 阅读(971) 评论(0) 推荐(0)
摘要: public static String getIp() throws SocketException { Enumeration allNetInterfaces = NetworkInterface.getNetworkInterfaces(); InetAddress ip = null; S 阅读全文
posted @ 2021-11-25 11:04 _Lawrence 阅读(215) 评论(0) 推荐(0)
摘要: ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); HttpServletRequest request = attributes. 阅读全文
posted @ 2021-11-25 11:02 _Lawrence 阅读(818) 评论(0) 推荐(0)
摘要: centos: 1. 获得ROOT权限 su- 2. 安装VSFTPD yum -y install vsftpd 3. 启动FTP服务 service vsftpd start 4. 加入开机启动 chkconfig vsftpd on 5. 更改配置 vi /etc/vsftpd/vsftpd. 阅读全文
posted @ 2021-11-19 14:45 _Lawrence 阅读(459) 评论(0) 推荐(0)
摘要: 在root权限下去执行:sudo chown 用户名 文件名 只去除当前文件的锁sudo chown 用户名 文件名/-R 去除文件以及文件内所有文件的有锁标志。sudo chown zc /home/zc/llvm-7.0.0.src/ -R 文件及文件内的有锁标志都去除。 阅读全文
posted @ 2021-11-19 12:00 _Lawrence 阅读(1466) 评论(0) 推荐(0)
摘要: 报错:piix4_smbus 0000:00:07.3: SMBus Host controller not enabled 查明装入模块的确切名字。命令:lsmod | grep i2c (查询结果为:i2c_piix4 模块) 将该模块列入不装入名单。编辑文件命令:sudo vi /etc/mo 阅读全文
posted @ 2021-11-18 15:06 _Lawrence 阅读(788) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页