会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
_Lawrence
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
13
14
···
20
下一页
2022年1月8日
vue eacharts多列柱状图示例
摘要: var option6 = { backgroundColor:'', color:["red","orange"], tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } }, grid: { left: '2%', right:
阅读全文
posted @ 2022-01-08 17:15 _Lawrence
阅读(563)
评论(0)
推荐(0)
2021年12月24日
mysql group by分组排序
摘要: 先内部使用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
阅读(757)
评论(1)
推荐(0)
2021年12月14日
vue tree树结构以select格式展示
摘要: 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
阅读(812)
评论(0)
推荐(0)
2021年12月2日
jar包打包为docker镜像
摘要: 将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
阅读(290)
评论(0)
推荐(0)
linux查看和修改文件权限
摘要: 其中“-rw-r--r--”表示权限,一共有十个字符。 第一组为本身具有的权限。第二组为所属用户的用户组其他成员的权限。第三组为其他用户的权限。 第一个字符,如果是“-”则表示是文件,如果是“d”则表示是目录,如上是目录。 每一组信息如“rw-”,每一个字符都有它自己的特定含义且先后位置是固定的,其
阅读全文
posted @ 2021-12-02 15:55 _Lawrence
阅读(627)
评论(0)
推荐(0)
2021年11月25日
vue重新依赖node_modules
摘要: npm cache clean --force删除项目中的node_modules文件夹npm install
阅读全文
posted @ 2021-11-25 17:42 _Lawrence
阅读(974)
评论(0)
推荐(0)
java获取本机ip,window和linux通用
摘要: public static String getIp() throws SocketException { Enumeration allNetInterfaces = NetworkInterface.getNetworkInterfaces(); InetAddress ip = null; S
阅读全文
posted @ 2021-11-25 11:04 _Lawrence
阅读(219)
评论(0)
推荐(0)
java方法内实例化获取HttpServletRequest
摘要: ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); HttpServletRequest request = attributes.
阅读全文
posted @ 2021-11-25 11:02 _Lawrence
阅读(828)
评论(0)
推荐(0)
2021年11月19日
centos和windows通过ftp互相传递数据
摘要: 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
阅读(467)
评论(0)
推荐(0)
centos文件或文件夹解锁
摘要: 在root权限下去执行:sudo chown 用户名 文件名 只去除当前文件的锁sudo chown 用户名 文件名/-R 去除文件以及文件内所有文件的有锁标志。sudo chown zc /home/zc/llvm-7.0.0.src/ -R 文件及文件内的有锁标志都去除。
阅读全文
posted @ 2021-11-19 12:00 _Lawrence
阅读(1473)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
14
···
20
下一页
公告