4 安装Oracle前的准备4.1基本配置4.1.1关闭防火墙[root@oracle~]#serviceiptablesstopiptables:SettingchainstopolicyACCEPT:filter[OK]iptables:Flushingfirewallrules:[OK]iptables:Unloadingmodules:[OK]关闭iptables开机自启动功能[root@oracle~]#chkconfigiptablesof..
分类:
数据库 时间:
2014-05-27 03:56:59
阅读次数:
598
(1)控制器和动作方法的名字不区分大小写。 public static void
RegisterRoutes(RouteCollection routes) { routes.MapRoute("MyRoute",
"{controller}/{...
分类:
其他好文 时间:
2014-05-23 08:52:54
阅读次数:
246
1 . 建立一个 single view class
2 . 在view controller上建立3个控件 text view,button, webview
3 . 将 text view , webview风别命名为 url,web
//// ViewController.h// webview1//// Created by HeJiasheng on 13-11-12...
分类:
移动开发 时间:
2014-05-22 12:22:35
阅读次数:
352
可能是以前记错了,总认为在ios6上使用了UINavigationController或者TabBarController会因为多了bar而影响子controller的view的frame大小。今天在xcode5.1上验证,无论ios6或者7,使用容器controller,产生了的bar都不会对子c...
分类:
移动开发 时间:
2014-05-22 04:28:02
阅读次数:
339
在一个应用程序中添加了多个antivity后,在manifest.xml文件中会除了主Activity外,其它的Activity属性中都会有个警告:Exported
activity does not require permission这是因为在Activity中添加了intent-filter属...
分类:
移动开发 时间:
2014-05-22 03:03:00
阅读次数:
488
Spring2.5 中除了提供 @Component
注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。在目前的Spring版本中,这 3
个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释...
分类:
编程语言 时间:
2014-05-22 01:39:14
阅读次数:
322
//获取view的controller- (UIViewController
*)viewController { for (UIView* next = [self superview]; next; next =
next.superview) { UIResponder *nextRe...
分类:
移动开发 时间:
2014-05-21 23:38:35
阅读次数:
1000
relation //关联模型什么是MVC //了解 M -Model 编写model类
对数据进行操作 V -View 编写html文件,页面呈现 C -Controller
编写类文件(UserAction.class.php)ThinkPHP的MVC特点 //了解ThinkP...
分类:
Web程序 时间:
2014-05-21 23:30:10
阅读次数:
453
AOP
有点类似于我们MVC里面的Filter过滤器,例如在MVC里面,如果给一个Action上打一个标签,就可以在这个Action执行之前或者之后,额外的执行一个方法,这个就相当于是面向切面编程.
无侵入式的. (也就是在不改变原来的代码的情况下,来跳转到一个其他的方法,执行完毕后回到主方法..)...
分类:
编程语言 时间:
2014-05-21 22:45:38
阅读次数:
323
利用filter函数可以从wrapper set中过滤符合条件的DOM元素。
如果我们有一个内容如下的html文件,要获取类为external的<a>元素,使用filter可以很easy地搞定。
link
link
link
link
link
link
link
link
link
filter的参数类型可分为两种:
1 传递选择器
2 传递过滤函数
如果使...
分类:
Web程序 时间:
2014-05-20 14:04:02
阅读次数:
337