码迷,mamicode.com
首页 >  
搜索关键字:instance    ( 6546个结果
cannot find class [xxx] for bean with name
产生此错误的原因是缺少项目或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
oracle学习----trace文件
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
[__NSCFConstantString size]: unrecognized selector sent to instance 0x6ead08
该错误是在我将NSString类型的参数赋值给UIImage类型的时候报出的,查了一会才查出是这的问题。 如果大家不是这个问题查一下是不是也是赋值类型错了。...
分类:其他好文   时间:2014-12-03 10:31:04    阅读次数:1182
some notes about industrial code
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
常用oracle语句-------------------------------------------》(笔记)
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
【Object-C】Copy
-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
jdbcTemplate query 将查询到的List自动影射成实体List
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
Python单例模式
#-*- 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.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实现单例模式的四种方法和一些特点
JAVA实现单例模式的四种方法和一些特点,需要的朋友可以参考一下一、饿汉式单例类复制代码 代码如下:public class Singleton { private Singleton(){ } private static Singleton instance = new Singleton...
分类:编程语言   时间:2014-11-30 23:04:40    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!