1.pom.xml增加redis支持 2.配置增加redis相关 3.RedisProperties.class读取配置中的值 4.JedisClusterConfig.class 5.RedisClientTemplate 6.注入redisClientTemplate即可操作redis增删改数据 ...
分类:
编程语言 时间:
2017-05-12 15:36:00
阅读次数:
156
@Override public boolean dispatchTouchEvent(MotionEvent ev) { //请求所有父控件不要拦截Touch事件 getParent().requestDisallowInterceptTouchEvent(true); return super.... ...
分类:
移动开发 时间:
2017-05-12 15:35:52
阅读次数:
193
vim文件路径自动补全 Ctrl+x -> Ctrl+f vim多行注释 Ctrl+v 进入块操作 -> 下光标选择行 -> shift+i 大写I 行首插入模式 -> 插入注释字符比如# 或 // ,只需要在需要注释行的第一行插入注释字符 -> Esc -> Esc vim字符串替换 :%s/ol... ...
分类:
系统相关 时间:
2017-05-12 15:35:44
阅读次数:
300
class Solution: # @param {integer[]} prices # @return {integer} def maxProfit(self, prices): profit = 0; for i in xrange(1, len(prices)): if prices[i] ...
分类:
其他好文 时间:
2017-05-12 15:35:35
阅读次数:
151
最近由于工作需要,沉迷可视化无法自拔,一直在研究基于GIS的地图可视化,自己在本机windows搭建了一个ArcGIS服务器,用Tableau和R调用WMS服务成功,不愧是GIS元老级应用,效果超赞。 由于生产系统基本基于Linux环境的,发现ArcGIS也有相应的Linux版本,说干就干。下了整个 ...
分类:
系统相关 时间:
2017-05-12 15:35:30
阅读次数:
485
Battle Ships is a new game which is similar to Star Craft. In this game, the enemy builds a defense tower, which has L longevity. The player has a mil ...
分类:
其他好文 时间:
2017-05-12 15:35:20
阅读次数:
155
http://www.educity.cn/wenda/126463.html 解决:The content of element type "web-app" must match "(icon ,display- 错误:The content of element type "web-app" ...
分类:
移动开发 时间:
2017-05-12 15:35:14
阅读次数:
221
原文 http://www.cnblogs.com/end/archive/2012/02/21/2361741.html 把cron加入到启动脚本中: # rc-update add vixie-cron default crontab -l #查看你的任务 crontab-e#编辑你的任务 cr ...
分类:
其他好文 时间:
2017-05-12 15:35:07
阅读次数:
266
#include<iostream> #include<memory.h> using namespace std; int dp[10010]; int max(int a,int b) { return a>b?a:b; } int main() { int n,v,vi[10100],wi[1 ...
分类:
其他好文 时间:
2017-05-12 15:35:01
阅读次数:
167
- (void)beginAppearanceTransition:(BOOL)isAppearing animated:(BOOL)animated __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_5_0); - (void)endAppearanceTran ...
分类:
移动开发 时间:
2017-05-12 15:34:54
阅读次数:
167
function foo1(){var s=Array.prototype.slice.apply(arguments);console.log(arguments);console.log(s); console.log(s instanceof Array);} 或者 function foo1 ...
分类:
编程语言 时间:
2017-05-12 15:34:48
阅读次数:
141
maven(01)--安装及其介绍 1:下载maven windows下载 2:将下载文件夹解压,然后放在一个安装目录(可任意选择),例如就放在D盘的根目录 然后在设置环境变量,新建一个环境变量,名称为M2_HOME,其设置值为maven的根路径,即为D:\apache-maven-3.5.0-bi ...
分类:
其他好文 时间:
2017-05-12 15:34:40
阅读次数:
259
原文:http://www.cnblogs.com/ywolf123/p/5340938.html 客户端在请求Web Api时可以有以下两种方式提供API key 基于Querystring提供Api key http://localhost:57967/Api/Values?key=12345 ...
应该是JetBrains系列IDE通用的方法,网上其他一些方法有的过时了,有的不全 默认情况下没有JQuery补全,按照以下方法添加 1. 打开Settings,Languages & Frameworks > JavaScript > Libraries 选择Add...(也可以选择Downloa ...
分类:
Web程序 时间:
2017-05-12 15:34:24
阅读次数:
206
其实这些ActiveMQ官网都有,但是如果你懒得看官网,那就直接看这吧! 1. 官网下载最新的ActiveMQ安装包 apache-activemq-x.x.x-bin.zip并解压 2.进入安装目录的bin目录,运行 activemq start 3.访问管理页面 http://127.0.0.1 ...
IE6下效果 其他浏览器下效果 解决方案:编写代码时,尽量使子级元素宽高小于父级 ...
分类:
其他好文 时间:
2017-05-12 15:33:52
阅读次数:
122