- 浏览: 223637 次
- 性别:
- 来自: 上海
-
最新评论
-
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()
文章列表
http://www.cnblogs.com/kaiyuanlee/articles/1921615.html
以下是正确的:
{'contactMap':{'405923747%40qq.com':{'createTime':1373277939598,'email':'405923747%40qq.com','json':'','md5':'632759b12e014c79b2c55be3d97e3a5b','mobile':'','name':'wyoki','originEmail':'@linkedin','ownerId':3141098,'shardByKey':3141098,'status':0,'type':5},'caffeine.cn%40gmail.com':{'create ...
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>5.8.0</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
...
http://cxxsoft.blog.51cto.com/1350418/1241251
给软件工程师的自学建议
与现在大学生的情况类似,学校学的专业知识总是与实际工作中需要的知识相差甚远。或许进入我们这个行业就注定要一辈子不离书本、不离学习了。由于软硬件技术 ...
mvn package -Dmaven.test.skip=true
“编码 GBK 的不可映射字符”问题的解决
http://www.cnblogs.com/leipei2352/archive/2011/04/20/2022128.html
<plugin>
2: <groupId>org.apache.maven.plugins</groupId>
3: <artifactId>maven-compiler-plugin</artifactId>
4: <version>2.0.2</ve ...
原因是没有加parent:
<parent>
<groupId>com.jingwei</groupId>
<artifactId>jingwei-root-pom</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
INSERT INTO $TABLE ($FIELDS) VALUES (:1.account_id, :1.module_id)"
+ "ON DUPLICATE KEY UPDATE account_id = :1.accountId , module_id = :1.moduleId
INSERT INTO $TABLE ($FIELDS) VALUES (:1.accountId, :1.moduleId) ON DUPLICATE KEY UPDATE account_id = :1.accountId , module_id = :1.mod ...
18:04:21,581 [main] INFO JedisPoolFactory.java:111 - init jedis pools, size:7
18:04:24,798 [main] ERROR RoseFilter.java:307 - [Rose-1.2-SNAPSHOT@Spring-3.1.2.RELEASE]:Error creating bean with name 'ModuleBuilder.com.jingwei.aut.controllers.LoginController': Injection of autowired dependencies failed; ...
jessionid通过这样的方式来从客户端传递到服务器端,从而来标识session。
注意一点,jsessionid跟一般的url参数传递方式是不同的,不是作为参数跟在"?"后面,而是紧跟在url后面用";"来分隔。
这样在用户禁用cookie的时候我们也可以传递jsessionid来使用session了,
只不过需要每次都把jseesionid作为参数跟在url后面传递。
那这样岂不是很麻烦,每次请求一个url都要判断cookie是否可用,
如果禁用了cookie,还要从url里解析出jsessionid,然后跟在处理完后转到的url后面,以保持jses ...
查看某个表的建表语句 :show create table data_statdata;
drop index ts on data_statdata;
索引是加速查询的主要手段,特别对于涉及多个表的查询更是如此。本节中,将介绍索引的作用、特点,以及创建和删除索引的语法。
13.4.1 使用索引优 ...
[21:04:03.910] Loading .tld files from global classpath
[21:04:04.148] com.caucho.xml.XmlParseException: jar:file:/D:/Users/lee/.m2/repository/jstl/jstl/1.2/jstl-1.2.jar!/META-INF/c.tld:6: <taglib xmlns="http://java.sun.com/xml/ns/javaee"> is an unexpected top-level tag.
[21:04:04.148 ...
1.属性是 ""时,会tojson后,会xxx:'',如果是null的话,xxx会不显示
// {}
@Test
public void t1() {
ContactsJsonModel contactsJsonModel = new ContactsJsonModel();
String json = JSON.toJSONString(contactsJsonModel);
System.out.println(json);
}
// {"company":"11"}
@Test ...
// @@111611!@
// adf@@1119911!@
// @@33633!@
// adf@@1119911!@22222@@339933!@
// adf@@1119911!@22222@@339933!@4444
@Test
public void t8() {
String start = "'json':'{";
String end = "}','md5'";
String middle = "'+";
StringBuffer sb = new Stri ...