摘要: 1、spring boot 访问地址http://localhost:13000/test/hello 2、配置nginx.conf文件 server localhost:13000; } server { listen 8010; server_name localhost; location ^ 阅读全文
posted @ 2018-08-28 15:17 浪荡云流 阅读(10650) 评论(0) 推荐(0) 编辑
摘要: 1、Spring Boot 自定义favicon.ico 我们可以在application.properties中设置关闭spring boot自带favicon,默认为开启, spring.mvc.favicon.enabled = false(经测试默认是关闭的) 若需设置自己的Favicon, 阅读全文
posted @ 2018-08-17 16:08 浪荡云流 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 测试集群 不加 -c [root@bogon redis-cluster]# redis01/redis-cli -h 192.168.31.123 -p 7002 不加 -c 192.168.25.153:7002> set a 100 (error) MOVED 15495 192.168.25 阅读全文
posted @ 2018-08-09 23:07 浪荡云流 阅读(136) 评论(0) 推荐(0) 编辑
摘要: (1)MySQL查看表占用空间大小 //先进去MySQL自带管理库:information_schema //自己的数据库:dbwww58com_kuchecarlib //自己的表:t_carmodelparamvalue (2)慢查询 1. 慢查询有什么用? 它能记录下所有执行超过long_qu 阅读全文
posted @ 2016-12-01 10:03 浪荡云流 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 是否支持分区:mysql> show variables like '%partition%';+ + +| Variable_name | Value |+ + +| have_partition_engine | YES |+ + +1 row in set (0.00 sec) 如果没有看到变 阅读全文
posted @ 2016-11-26 21:17 浪荡云流 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 相关jar包下载 阅读全文
posted @ 2016-06-28 10:45 浪荡云流 阅读(2541) 评论(0) 推荐(0) 编辑
摘要: 控件: css定义: 阅读全文
posted @ 2016-06-21 17:54 浪荡云流 阅读(1143) 评论(0) 推荐(0) 编辑
摘要: 前台: <?page title="Grid使用" contentType="text/html;charset=UTF-8"?> <zk xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zkoss.or 阅读全文
posted @ 2016-06-21 13:11 浪荡云流 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 网络上搜索下,发现都不适合 最终改写代码: FileInputStream fis = null;//针对部门服务器乱码InputStreamReader isr = null; 阅读全文
posted @ 2016-06-20 17:29 浪荡云流 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 创建表: (1)更新记录某个 字段 (2)添加字段 (3)修改列类型 (4)重命名列 alter table 表名 change column 更改之前的列名 更改之后的列名 更改之后的列名的数据类型(列的存储空间分配的字节数) (5)删除某个列 (6)修改列注释 (7)删除表记录 -- 清空全部数 阅读全文
posted @ 2016-03-31 18:09 浪荡云流 阅读(404) 评论(0) 推荐(0) 编辑