上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 55 下一页

2019年7月22日

centos 新建用户

摘要: 1、建用户: adduser phpq //新建phpq用户passwd phpq //给phpq用户设置密码 2、建工作组groupadd test //新建test工作组 3、新建用户同时增加工作组useradd -g test phpq //新建phpq用户并增加到test工作组 注::-g 阅读全文

posted @ 2019-07-22 09:44 正义的伙伴! 阅读(2017) 评论(0) 推荐(0) 编辑

2019年7月19日

windows 远程不能复制粘贴解决

摘要: Windows远程桌面(mstsc)不能复制粘贴的解决办法 原来通过mstsc远程连接Windows能够直接在本地和服务器之间复制、粘贴一些文字和文件,最近突然无法直接复制粘贴了,只能通过远程映射的本地磁盘方式交换文件,太为繁琐。 已经确认远程桌面连接选项“本地资源-》本地设备和资源-》剪贴板”中勾 阅读全文

posted @ 2019-07-19 17:24 正义的伙伴! 阅读(15663) 评论(0) 推荐(0) 编辑

2019年7月18日

spring cloud eureka client 写法

摘要: spring: application: name: ${app:unicom-statistic} cloud: config: uri: http://${config-ip:192.168.0.110}:8500 profile: ${profile:dev} label: master task: scheduli... 阅读全文

posted @ 2019-07-18 11:53 正义的伙伴! 阅读(311) 评论(0) 推荐(0) 编辑

mysql 5.5 linux 安装

摘要: # 启动 mysql (指定 默认 的 配置文件)./mysqld --defaults-file=my.cnf # 后台 启动 mysql./mysqld --defaults-file=my.cnf & /lyc/mysql-5.5.62/tmp/mysql.sock 注意 ; 如果没有 mys 阅读全文

posted @ 2019-07-18 10:42 正义的伙伴! 阅读(476) 评论(0) 推荐(0) 编辑

2019年7月17日

sqlyog 导入 loss connection

摘要: 导致我找了很久都没有找到原因,以为是5.5mysql导出来的再导入5.7mysql版本不一样出错了。 试了百度的很多种方法都没有用,试着用命令行导入报: ERROR 1153 (08S01) at line 1012: Got a packet bigger than ‘max_allowed_pa 阅读全文

posted @ 2019-07-17 16:30 正义的伙伴! 阅读(244) 评论(0) 推荐(0) 编辑

list 集合 分页

摘要: 方式一:public static void fenye(List list,int pagesize){ int totalcount=list.size(); int pagecount=0; int m=totalcount%pagesize; if (m>0){ pagecount=tota 阅读全文

posted @ 2019-07-17 11:30 正义的伙伴! 阅读(472) 评论(0) 推荐(0) 编辑

2019年7月16日

jquery 获取frame document 对象

摘要: # 1 子 iframe 获取 父 窗口下的其他 子 iframevar jqFrame = $(parent.frames[id].contentWindow.document); 阅读全文

posted @ 2019-07-16 15:59 正义的伙伴! 阅读(1762) 评论(0) 推荐(0) 编辑

2019年7月5日

spring boot 自带的 session 配置

摘要: server: port: 8761 host: localhost servlet: session: cookie: name: eureka-session 阅读全文

posted @ 2019-07-05 11:01 正义的伙伴! 阅读(1541) 评论(0) 推荐(0) 编辑

2019年7月3日

spring mybatis 多数据源配置

摘要: 方法1: 使用自带的 多数据源 方法2: 使用 aspectj aop 关键类 : AbstractRoutingDataSource, 在当前线程中绑定一个数据源 既 ThreadLocal<DataSource> 变量 参考: spring mybatis 多数据源 https://www.cn 阅读全文

posted @ 2019-07-03 10:42 正义的伙伴! 阅读(343) 评论(0) 推荐(0) 编辑

2019年7月1日

jdbc mysql driver 8.0 写法

摘要: jdbc:mysql://${db.host}/${db.name}?useSSL=false&serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8 阅读全文

posted @ 2019-07-01 16:04 正义的伙伴! 阅读(1146) 评论(0) 推荐(0) 编辑

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 55 下一页

导航

//增加一段JS脚本,为目录生成使用