- 浏览: 7305 次
- 性别:
- 来自: 北京
最新评论
文章列表
if ([platform isEqualToString:@"iPhone1,1"]) return @"iPhone 2G (A1203)";
if ([platform isEqualToString:@"iPhone1,2"]) return @"iPhone 3G (A1241/A1324)";
if ([platform isEqualToString:@"iPhone2,1"]) return @"iPhone 3GS (A1303/A1325)&qu ...
1、select count(user_id) from log_2015_01_15 where server='server5' and category='register' and f1=0 and user_id not in (select user_id from log_2015_01_15 where server='server5' and category='register' and f1=1 ) ;
2、select count(user_id) from log_2015_01_15 l where server='server5' and category=' ...
"123".contains(""),此方法正常理解应该是返回false,但其实是true。所以此方法要判断是否是null或者""空字符串
double b=2.8;
float f=2.8f;
System.out.println(b>f);
结果是true;
结论:比较的数据类型一致
发现ibatis-common-2.jar和ibatis-2.3.4.jar里面2个类com.ibatis.common.xml.NodeletParser有共同的方法parse(InputStream in),造成冲突,解决办法去掉第一个jar包,通过。下面是异常堆栈:
Caused by: org.springframework.beans.factory.BeanCreationException: Error creati
ng bean with name 'othersDAO' defined in class path resource [applicationContext
. ...
简单说,xpath就是选择XML文件中节点的方法。
所谓节点(node),就是XML文件的最小构成单位,一共分成7种。
- element(元素节点)
- attribute(属性节点)
- text (文本节点)
- namespace (名称空间节点)
- processing-instruction (处理命令节点)
- comment (注释节点)
- root (根节点)
xpath可以用来选择这7种节点。不过,下面的笔记只涉及最常用的第一种element(元素节点),因此可以将下文中的节点和元素视为同义词。
一、xpath表达式的基本格式
xpath通过“路径表达式”(Path ...