遇到Invalid action class configuration that reference的时候,你可以在你的Action中设置一下断点,来判断一下他是否找到了这个action。
不过遇到这个异常的时候都是没有进到action。
这时候,有几种可能导致呢?
(1)struts.xml的配置写的不对,name,class检查一下。如果是和spring做整合的,要注意struts中的...
分类:
其他好文 时间:
2014-06-05 10:22:29
阅读次数:
165
解决方法:
点击一下工程,工程-->"Build Settings"-->找到Objective-C Automatic Reference Counting项-->将它的值设置为NO。ok
找到Objective-C Automatic Reference Counting项...
分类:
其他好文 时间:
2014-06-05 07:43:00
阅读次数:
303
本程序主要测试:
context = clCreateContext(NULL, 1, &device, NULL, NULL, &err);
创建一个context
clRetainContext(context);//Context的reference +1
clReleaseContext(context);//Context的reference -1
#inc...
分类:
其他好文 时间:
2014-06-05 07:04:25
阅读次数:
265
2014.5.27
reference: C++ primer 5th, $7.6:Static Class Members
TOPIC 1:一个类中的member(data member和function member)可以声明为static,需要申明为static的情况有一下原因:
1:使用的客观需要:需要某个member是associated with the class,not wi...
分类:
编程语言 时间:
2014-06-05 05:19:15
阅读次数:
263
undefined reference to `__aeabi_uidivmod'和undefined reference to `__aeabi_uidiv' 这是一个很常见的问题 解决办法一直都是比较复杂 这里给出问题出现的额原因和两种解决方法 推荐第一种解决方法 uboot最好不连接库...
分类:
其他好文 时间:
2014-06-05 02:48:20
阅读次数:
396
windows
phone中做动画其实很方便的,可以使用Blend拖来拖去就做出一个简单的动画,下面做了一个
ios屏幕小白点的拖动效果,包括速度判断移动使用Blend生成以下代码 ...
分类:
移动开发 时间:
2014-06-03 12:28:19
阅读次数:
371
条款21:必须返回对象时,别妄想返回其reference
引用只是对象的一种别名当使用引用的时候,请确认他的另一个身份在哪?...
分类:
其他好文 时间:
2014-05-31 21:49:07
阅读次数:
218
(Sorry for that click-bait heading. Couldn’t
resist ;-) )We’re on a mission. To teach you SQL. But mostly, we want to teach
you how to appreciate SQL....
分类:
数据库 时间:
2014-05-31 17:00:45
阅读次数:
1397
1.新建 Static Library 项目选择 File -> New ->
Project , 项目模板选择 Cocoa Touch Static Library , 项目名称命名为 MyLib.xcodeproj , 注意选中 Use
Automatic Reference Counting ...
分类:
其他好文 时间:
2014-05-31 11:18:08
阅读次数:
444
一、UIView的常用属性1——父子视图属性 1、 superview 获得自己的父控件对象
2、subviews 获得自己的所有子控件对象 注意: –一个视图最多只能有一个父视图 –一个视图可以有多个子视图 代码段1.1: //
系统加载完Storyboard之后,会自动执行- (void)vie...
分类:
其他好文 时间:
2014-05-29 14:10:54
阅读次数:
243