产生此错误的原因是缺少项目或Jar的引用;解决办法:找到类对应的项目或是Jar包引用到项目中就可以了。详细错误信息如下:严重: Exception sending context initialized event to listener instance of class com.auth.spring.listener.SpringLoaderListener
org.springframew...
分类:
其他好文 时间:
2014-12-03 17:13:52
阅读次数:
191
1.查看v$diag_info视图,能查看跟踪文件的位置,具体的名称等信息。name列中,Diag Trace是11g跟踪文件所在位置Default Trace File是当前会话的跟踪文件名2.查询可以生成跟踪文件名select c.value||'\'||d.instance_name||'_o...
分类:
数据库 时间:
2014-12-03 15:37:00
阅读次数:
191
该错误是在我将NSString类型的参数赋值给UIImage类型的时候报出的,查了一会才查出是这的问题。
如果大家不是这个问题查一下是不是也是赋值类型错了。...
分类:
其他好文 时间:
2014-12-03 10:31:04
阅读次数:
1182
1.about parameters checkoutthis is general traditions to check the received parameters .for instance , when we want to get an array of string standing...
分类:
其他好文 时间:
2014-12-02 18:58:53
阅读次数:
219
Orale常用语句1:查询指定表名的字段select * from sys.user_tab_columns where table_name=表名 //查询指定表名的字段2: 查询数据库参数 show parameter db; 3:查询数据库的实例名 select instance_nam...
分类:
数据库 时间:
2014-12-02 18:50:29
阅读次数:
297
-copyWithZone:
Returns a new instance that’s a copy of the receiver. (required)
-mutableCopy
Returns the object returned by mutableCopyWithZone: where
the zone is nil.
Declaration:
- ...
分类:
其他好文 时间:
2014-12-02 17:22:40
阅读次数:
193
Spring API Doc的说明如下: ?? RowMapper implementation that converts a row into a new instance of the specified mapped target class. The mapped target class must be a top-level class and it must...
分类:
数据库 时间:
2014-12-01 19:34:29
阅读次数:
196
#-*- encoding=utf-8 -*-class Singleton(object): def __new__(cls, *args, **kw): if not hasattr(cls, '_instance'): orig = super(Sin...
分类:
编程语言 时间:
2014-12-01 18:59:26
阅读次数:
145
探索Oracle之数据库升级二
11.2.0.3
升级到11.2.0.4完整步骤
说明:
这篇文章主要是记录下单实例环境下Oracle 11.2.0.1
升级到11.2.0.3的过程,当然RAC的升级是会有所不同。但是他们每个版本之间升级步骤都是差不多的,先升级Database Software,再升级Oracle Instance。
Oracle 11.2....
分类:
数据库 时间:
2014-11-30 23:29:35
阅读次数:
480
JAVA实现单例模式的四种方法和一些特点,需要的朋友可以参考一下一、饿汉式单例类复制代码 代码如下:public class Singleton { private Singleton(){ } private static Singleton instance = new Singleton...
分类:
编程语言 时间:
2014-11-30 23:04:40
阅读次数:
286