Maven内置变量说明:${basedir} 项目根目录${project.build.directory} 构建目录,缺省为target${project.build.outputDirectory} 构建过程输出目录,缺省为target/classes${project.build.finalN...
分类:
其他好文 时间:
2014-11-13 20:22:40
阅读次数:
164
问题:
这是一个从RAC环境的数据库的RAMN备份恢复到一个单机数据库的操作。
当恢复数据文件和恢复正常,但在open数据库时出报下面的错误。
--rman备份恢复操作
#创建参数文件
cd $ORACLE_HOME/dbs
$cat initntracdb.ora
*.archive_lag_target=0
*.compatible='11.2.0.4.0'
...
分类:
数据库 时间:
2014-11-13 16:42:21
阅读次数:
246
该模式主要是为了减少模块之间代码耦合性,以及增强模块内代码之间的内聚性.让我们来看看一个实例:1:假设有这么一个需求:我们点击一个视图对象,可以改变该视图的颜色,这个对于初学者来说是一件非常容易做到的事,只要在这个视图类中重写:-(void)touchesBegan:(NSSet*)toucheswith..
分类:
移动开发 时间:
2014-11-13 07:12:43
阅读次数:
234
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Each number ...
分类:
其他好文 时间:
2014-11-13 06:58:22
阅读次数:
146
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:
其他好文 时间:
2014-11-13 06:56:43
阅读次数:
179
1、超链接和锚点 html5保留了定义超链接的元素,该元素可以指定id,class,style等核心属性,也可以指定onclick等各种事件属性。它还可以指定如下三个重要属性。href:指定超链接所关联的另一个资源。target:指定使用框架集中的哪个框架来装载另一个资源。该属性的属性值可以使_se...
分类:
Web程序 时间:
2014-11-13 00:25:51
阅读次数:
212
Leetcode中原题:Two Sum给定一个整数数组,找出其中和等于给定目标值的数的下标(数组第一个元素的下标是1),第一个下标必须比第二个下标小,假定此题只有唯一解。例:输入:numbers={2, 7, 11, 15}, target=9输出:index1=1, index2=2思路1:两层循...
分类:
编程语言 时间:
2014-11-12 21:15:13
阅读次数:
289
虽然不影响程序运行,但是会报错警告警告: Error setting expression 'html.login' with value '[Ljava.lang.String;@133cdbd'ognl.OgnlException: target is null for setProperty(...
分类:
数据库 时间:
2014-11-12 19:43:13
阅读次数:
277
$('table').mousedown(function(e){ celindex = $(e.target)[0].cellIndex; rowindex = $(e.target).parent()[0].rowIndex;});.cellIndex对象是..rowIndex对...