- 浏览: 221699 次
- 性别:
- 来自: 上海
最新评论
-
junzi2013:
df
黑马程序员:MyEclipse9 常用快捷键 中英文对照 及 快速get set方法 -
junzi2013:
dfsdafadsfsd
黑马程序员:MyEclipse9 常用快捷键 中英文对照 及 快速get set方法 -
idealab:
博主说的OpenCSV, JavaCSV, SuperCSV都 ...
csv调研 -
tanxin:
楼主怎么解决这个问题的呢?
坑爹的zookeer -
yy22258867:
:twisted:
黑马程序员19-7:foreach遍历核心源码,遍历HashMap需要用map.keySet()或map.entrySet()
文章列表
General-workspace UTF-8
General-Appearance-Colors And Fonts Basic Text Font 11
Java-Code Style-Code Template Import...codeTemplate
Java-Code Style-Formatter Import ....Spring IDE
Maven User Settings...
Team-Svn-Svn接口 SVNKit
svn subclipse 1.10.5
svn: Additional errors:
svn: OPTIONS request on '/stats' failed: 500 Internal Server Error
RA layer request failed
svn: Unable to connect to a repository at URL 'http://svn.d.xiaonei.com/stats'
svn: Unexpected HTTP status 500 'Internal Server Error' on '/stats'
svn: Addit ...
查询不同的学校,不同的性别总数
SELECT sum(CASE WHEN gender = '女' THEN 1 ELSE 0 END) AS '女', sum(CASE WHEN gender = '男' THEN 1 ELSE 0 END) AS '男', count(id), univname FROM USER GROUP BY univname;
任何访问都是先跳转到10.2.8.20,10.2.8.21,由上面的nginx具体做跳转指向
clean后解决
15:22:01,908 [Druid-ConnectionPool-Create] ERROR DruidDataSource.java:1152 - create connection error
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet sent successfully to the server was ...
左右连接
SELECT a.role_id, b.uid, b.account, b.name FROM user_role_module a RIGHT JOIN user_account b ON a.role_id = b.role_id WHERE a.module_id = 3
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'bizUploadClient' defined in URL [jar:file:/data/webapp/car ...
http://www.alixixi.com/web/a/2012071482221.shtml
Sass and Compass in Action
http://www.ruanyifeng.com/blog/2012/06/sass.html
http://wenku.baidu.com/link?url=MzIYPc3OIn7sGFNjSFa5WTNKmc4_SWXjBLbV0NrhfN1dmp1nxoBt4wzSz-tz4eTRxlxs2Zz6WsHc6zIMwqOdP_rQkx8cOI28z_8ViRnz0oi
修改搜索形式:
http://datatables.net/release-datatables/examples/api/multi_filter.html
var oTable = $('#example').dataTable( {
"oLanguage": {
"sSearch": "Search all columns:"
}
} );
model引用
都是同一个对象,所以一定要小心,set的时候,不能用同一个对象,必须new一个或者clone一个
CollModel collModel = new CollModel();
CollModel collModel2 = new CollModel();
Map<Integer, List<Integer>> map = new HashMap<Integer, List<Integer>>();
collModel.setMap(map);
List<Integer> list = new ...
坑爹的js规范
- 博客分类:
- JavaScript
21个值得收藏的Javascript技巧
http://developer.51cto.com/art/201307/404053_all.htm
编写更好的CSS代码
http://blog.jobbole.com/55067/
编写更好的jQuery代码的建议
http://blog.jobbole.com/52770/
给JavaScript初学者的24条最佳实践
http://blog.jobbole.com/53199/
解密 JavaScript 中的 this
http://blog.jobbole.com/54267/
http://blog.csdn.net/surprisesdu/article/details/605965
http://www.blogjava.net/jicheng687/archive/2011/02/21/344787.html
final Map<Long, Integer> cardIdScountMap = this.buildCardIdScountMap(cardIdSet);
Collections.sort(cardList, new Comparator<Card>() {
@Override
public int compare(Card o1, Card o2) {
// 先比较scount,再比较是否有名片,最后再比较createTime
if (cardIdScountMap.get(o1.getCardId()) ...
基础环境:
10.8.15.236 wiki.lab.jingwei.com
10.8.15.236 maven.lab.jingwei.com
10.8.15.221 svn.lab.jingwei.com
10.2.8.194 jira.lab.jingwei.com
正式环境:
10.8.64.64 jadeconfig.d.jingwei.com
10.8.64.67 zookeeper1
10.8.64.68 zookeeper2
10.8.64.69 zookeeper3
10.8.64.17 activemqweb1
10.8.64.18 activemqweb2
10 ...
统计不同状态,不同超时状态的总数
select verify_user,timeout, count(timeout), sign_status from verify_sign_info where sign_time > '2014-01-08 00:00:00' group by verify_user, sign_status, timeout;
+-------------+---------+----------------+-------------+
| verify_user | timeout | count(timeout) | sign_status | ...
测试环境:
10.8.15.236 wiki.lab.jingwei.com
10.8.15.236 maven.lab.jingwei.com
10.8.15.221 svn.lab.jingwei.com
10.2.8.194 jira.lab.jingwei.com
10.8.15.236 wiki.lab.jingwei.com
10.8.15.236 maven.lab.jingwei.com
10.8.15.221 svn.lab.jingwei.com
10.2.8.194 jira.lab.jingwei.com
10.8.64.36 zookeeper1 zo ...
http://www.angularjs.cn/A001
http://www.tuicool.com/articles/iuqYFj
http://www.zhihu.com/question/21151483/answer/18116354
JS优化其中有些不能相信
http://blog.jobbole.com/53199/
http://blog.jobbole.com/54267/
现在就开始使用AngularJS的三个重要原因
http://developer.51cto.com/art/201311/416334.htm
21个值得收藏的Javascript技巧 ...