上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页
摘要: 第一步:生成证书 命令行输入: 将生成好的证书存放到指定位置,我存放在D盘 第二步:配置Tomcat 到tomcat的安装目录,找到conf下的server.xml文件,配置https信息 如果只想要https访问,将8080配置注释 阅读全文
posted @ 2017-04-06 14:22 旋转的梦 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 检查quartz.properties数据源配置是否正常 阅读全文
posted @ 2017-04-05 20:23 旋转的梦 阅读(2210) 评论(0) 推荐(0) 编辑
摘要: /** * 订单监控类 * 定时扫描所有待付款订单,超时自动取消 * Created by huangbaidong * 2017/3/29. */ @Component public class OrderMonitorJob { @Resource private RedisUtil redisUtil; @Resource privat... 阅读全文
posted @ 2017-04-01 09:45 旋转的梦 阅读(7450) 评论(0) 推荐(0) 编辑
摘要: 场景:当我们在开发库修改表结构之后,需要把这些表结构的变化同步更新到生产库,这时候可以在Navicat中copy表结构变更的SQL语句。 当你点击了“设计表”进行修改表结构,在保存表结构之前点击“SQL预览”,你将会看到你的所有操作生成了SQL语句。 注意:如果你保存了表结构,“SQL预览”下的内容 阅读全文
posted @ 2017-03-31 11:12 旋转的梦 阅读(3277) 评论(0) 推荐(0) 编辑
摘要: 连接客户端 ./redis-cli -h 127.0.0.1 -p 6379 验证密码 auth password 查看所有信息 info 查看连接数 info clients 查看最大连接数 config get maxclients 连接情况统计 info stats 阅读全文
posted @ 2017-03-30 23:35 旋转的梦 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 分布式锁切面类 阅读全文
posted @ 2017-03-30 19:58 旋转的梦 阅读(656) 评论(0) 推荐(0) 编辑
摘要: Properties properties = new Properties();InputStream in = ClassLoader.class.getResourceAsStream("/config/application-time.properties"); if (in == null 阅读全文
posted @ 2017-03-30 15:05 旋转的梦 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 原因是driverDelegateClass配置错误。 阅读全文
posted @ 2017-03-29 16:45 旋转的梦 阅读(3453) 评论(0) 推荐(0) 编辑
摘要: -- 显示创表语句show create table bsd_promotion_inventory_limit; -- 显示表索引show index from bsd_promotion_inventory_limit; -- 删除索引alter table bsd_promotion_inve 阅读全文
posted @ 2017-03-28 10:17 旋转的梦 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 一、#{beanID['propertiesName']}方式 二、${'propertiesName'}方式 阅读全文
posted @ 2017-03-27 18:31 旋转的梦 阅读(494) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页