自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 收藏
  • 关注

转载 ubuntu找不到命令 add-apt-repository command not found

解决命令 sudo apt-get install python-software-propertiessudo apt-get updatesudo apt install software-properties-common sudo apt-get update ...

2019-06-28 01:12:00 1348

转载 maven管理冲突jar包

冲突jar包如图: 解决冲突代码: <dependency> <groupId>com.github.briandilley.jsonrpc4j</groupId> <artifactId&g...

2019-06-14 15:03:00 117

转载 Windows本地域名转接

修改目录 C:\Windows\System32\drivers\etc 修改hosts文件 # Copyright (c) 1993-2009 Microsoft Corp.## This is a sample HOSTS file used by Microsoft TCP...

2019-04-13 23:20:00 247

转载 nginx配置https证书

配置内容 server { listen 443; server_name www.xxx.com; ssl on; ssl_certificate /root/data/ssl/1_www.xxx.com_bundle.crt; ssl_certif...

2019-02-12 15:38:00 119

转载 idea 注册码

获得注册码 http://idea.lanyus.com/ 更改windows下的hosts文件 C:\Windows\System32\drivers\etc 添加映射 0.0.0.0 account.jetbrains.com ...

2019-02-06 12:17:00 99

转载 centos7查看防火墙状态

查看防火墙状态 [root@VM_0_3_centos /]# firewall-cmd --statenot running[root@VM_0_3_centos /]# sudo systemctl status firewalld● firewalld.service - ...

2019-02-03 22:04:00 149

转载 UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 660: ordinal not in range(128)

linux使用命令yum安装时报错 解决方案 cd /var/lib/rpm/rm -i __db.*yum clean allyum history new 如果上面的方法还没有解决 在 /usr/share/yum-cli/yummain.py和 /usr/...

2019-02-03 21:14:00 839

转载 给linux文件夹设置权限

命令 chmod -R 777 /var/home/userid/cc 转载于:https://my.oschina.net/u/3011256/blog/3008399...

2019-02-03 20:12:00 107

转载 mysql rpm安装

下载 wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-5.7.23-1.el6.x86_64.rpm-bundle.tar 解压: tar xvf mysql-5.7.23-1.el6.x86_64.rpm-bundle.tar ...

2019-01-23 18:14:00 94

转载 MySQL按天查询语句

SELECT SUM(rmb)FROM `t_charge` where DATE_FORMAT(time,'%Y%m%d') = '20190112'; ...

2019-01-13 14:02:00 2552

转载 linux安装redis

解压 tar xzf redis-2.6.17.tar.gz 安装依赖 yum install gcc-c++ 安装 [root@bogon redis-3.2.0]# make distclean[root@bogon redis-3.2.0]# make &&am...

2018-12-29 05:01:00 68

转载 linux下查找java进程占用CPU过高原因

linux下查找java进程占用CPU过高原因 1. 查找进程 top查看进程占用资源情况 明显看出java的两个进程22714,12406占用过高cpu. 2.查找线程 使用top -H -p <pid>查看线程占用情况 3.查找java的堆栈信...

2018-12-26 14:58:00 77

转载 web调试,局域网内,防火墙规则设置

1.打开防火墙如图 转载于:https://my.oschina.net/u/3011256/blog/1812652...

2018-05-15 11:01:00 236

转载 vue绑定数组时,无法更新view

绑定数组代码<chart title='所有应用' :dataList='dataList' ></chart>数组定义dataList: [],监听数组变化watch: { dataList() { console.log(...

2018-03-22 17:36:00 109

转载 vue的v-if和v-show

现象:转换a和b时,下面的数据类别没有渲染成选中的状态 代码: <template> <div class="content"> <div class='slt-btn'> <div class="conten...

2018-03-21 15:45:00 102

转载 vue 数据不能及时更新的

双向绑定后的数据没有刷新到view上let tempArr = []; tempArr.push({id: 1, name: 'apple'}); tempArr.push({id: 1, name: 'banana'}); tempArr.p...

2018-03-09 19:08:00 374

转载 js数组数据的删除操作

清空数组的操作splice清空let arr = [1, 2, 3, 4]; console.log("test:", arr) arr.splice(0, arr.length); console.log("test:", arr)结果...

2018-03-09 12:06:00 1409

转载 tomcat服务器报错IOException: Broken pipe

前端报错一直报502错误tomcat报错tomcat报错不一定每次都出现nginx报错日志2018/02/28 10:02:39 [error] 4769#0: *22505 upstream sent too big header while reading response ...

2018-02-28 10:32:00 232

转载 nginx代理,vue打包注意事项

nginx代理前端服务器服务器域名如:server { listen 80; server_name xxx.liangyufeng.com; root /data/client/aaa; index index.php index.html index.h...

2018-02-12 18:24:00 187

转载 nginx配置细节

nginx配置的一些细节第一种方式server { listen 80; server_name wan.www.cn; #access_log logs/nnnnnnnnnnnnn.log main; root D:/pc/dist/ssb; index ind...

2018-02-07 11:09:00 118

转载 前后端分离后的手机端乱码问题

问题描述前后端分离的项目,在pc端调试代码都没有乱码问题,前端后端都设置了编码为utf-8,在上线之前还是很正常的编码,后来发现在手机上加载前端后,发送到后端,后端接收到的数据就乱码了解决思路发现用这种方式解码可以得到正确的内容String content = new String(c...

2018-02-02 10:04:00 286

转载 一个域名对应多个vue.js工程的nginx配置

需求 http://wan.www.cn/aaaaa http://wan.www.cn/sc类似这种多个前端vue工程,对应同一个域名nginx配置server { listen 80; server_name wan.www.cn; #access_lo...

2018-01-29 14:43:00 157

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除