先来看看这个spring的配置文件的配置: ?<!-- 事务管理器 --> ?<bean id="transactionManager" ? class="org.springframework.orm.hibernate3.HibernateTransactionManager"> ? <property name="sessionFacto...
分类:
编程语言 时间:
2014-07-26 03:39:18
阅读次数:
223
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:
其他好文 时间:
2014-07-26 01:37:06
阅读次数:
221
expression 是一个要计算的 Javascript 标准的表达式。表达式外侧的圆括号是选的,但是写上去是一个好习惯。 (实现版本 Navigator 3.0 )你以使用 void 操作符指定超级链接。表达式会被计算但是不会当前文档处装入任何内容。
分类:
编程语言 时间:
2014-07-26 00:12:26
阅读次数:
283
.main_con img{ max-width: 610px; height: auto; cursor: pointer; border: 0px double #cccccc; padding: 2px; zoom: expression( function...
分类:
其他好文 时间:
2014-07-25 14:27:11
阅读次数:
177
1.点..:代表一个字符(这个跟linux的正则表达式是不同的,那里.代表的是后面字符的一次或0次出现)2.转义\\或者r‘\‘:如r‘python\.org‘(对.符号的转义)3.^非或叫做排除如[^abc]:任何以非a,b,c的字符4.|选择符如python|perl(从python和perl选择一个)也可以:p(ython|erl)5.?可..
分类:
编程语言 时间:
2014-07-24 23:53:34
阅读次数:
292
一、函数定义(1)使用function declaration格式:function functionName(parameters) { function body }注:此种方式声明的函数作用域是全局的,即在声明之前可以调用(2)使用function expression格式:var...
分类:
编程语言 时间:
2014-07-24 00:47:07
阅读次数:
236
SELECT partition_name part, partition_expression expr, partition_description descr, table_rows FROM INFORMATION_SCHEMA.partitions WHERE...
分类:
数据库 时间:
2014-07-23 20:20:55
阅读次数:
258
以下代码演示的是除去字符串后四位SUBSTRING([name],1,LEN([name])-4)下面是SUBSTRING的解释SUBSTRING ( expression ,start , length )第一个参数是字符串,第二个是起始位置,第三个是长度起始位置要从1开始,如果选择0,则会被多截...
分类:
数据库 时间:
2014-07-23 12:52:26
阅读次数:
227
Valid operators are +, -, *, /. Each operand may be an integer or another expression. Some examples: ["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9 [...
分类:
其他好文 时间:
2014-07-23 11:37:06
阅读次数:
216
Lambda表达式 —— 用简单的方法实现只有一个函数的接口 Lambda syntax 1 2 3 (parameters) -> expression (parameters) -> statement (parameters) -> { statements } Lambda表达式实例 1 2 3 (intx,inty) -> x...
分类:
编程语言 时间:
2014-07-23 00:33:37
阅读次数:
318