create user test identified by root;
grant create session,resource to root;
alter user test account unlock;
grant create view to test;
grant any sequece to test;
grant create synonym to ich;--创建别...
分类:
数据库 时间:
2014-08-10 13:00:50
阅读次数:
357
@Resource注解@Resource 注解被用来激活一个命名资源(named resource)的依赖注入,在JavaEE应用程序中,该注解被典型地转换为绑定于JNDI context中的一个对象。 Spring确实支持使用@Resource通过JNDI lookup来解析对象,默认地,拥有与@...
分类:
编程语言 时间:
2014-08-09 18:36:18
阅读次数:
256
RobotFramework 测试库(Test library) 资源文件(Resource file) 变量文件(Variable file) 测试模版(Template)将关键字驱动模式改成数据驱动模式 不同的测试用例模式: ?? ?关键字驱动模式 ?? ?数据...
分类:
其他好文 时间:
2014-08-09 16:05:28
阅读次数:
645
Facebook Chat, offered a nice set of software engineering challenges:Real-time presence notification:The most resource-intensive operation performed i...
分类:
其他好文 时间:
2014-08-08 17:26:26
阅读次数:
311
由于浏览器安全方面的限制,大多数 "Ajax" 请求遵守同源策略;请求无法从不同的域、子域或协议成功地取回数据。如果在不同域下访问就会出现提示:
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1' is therefore not allowed access.
因此解决方法:
1.采用同域策略,在同一域名下。
2.在服务端设置属性,如:php服务端...
分类:
Web程序 时间:
2014-08-08 16:04:36
阅读次数:
297
地址:http://thobian.info/?p=1367 题目可能有点标题党,毕竟下面要说到的只是nginx在比较特殊的环境才回出现的500情况。 先说下自己的开发环境: WEB服务器:nginx,搭在本地虚拟机(虚拟机是直接copy过来的) 开发工具:zend studio(这个其实没什么好说...
分类:
其他好文 时间:
2014-08-08 15:53:16
阅读次数:
1612
iOS 国际化。根据系统不同的语言自动切换。首先。选择项目 Add new file -->iOS -->Resource -->Strings File . 命名为Localizable.strings打开Localizable.strings。它的格式是这样的"KEY"="CONTENT";请按...
分类:
移动开发 时间:
2014-08-08 15:51:16
阅读次数:
260
Any class that manages a resource (awrapper, like a smart pointer) needs to implementThe Big Three. While the goals and implementation of the copy-con...
分类:
其他好文 时间:
2014-08-08 15:51:06
阅读次数:
262
连接池的基本工作原理 1、基本概念及原理 由上面的分析可以看出,问题的根源就在于对数据库连接资源的低效管理。我们知道,对于共享资源,有一个很著名的设计模式:资源池(Resource Pool)。该模式正是为了解决资源的频繁分配?释放所造成的问题。为解决上述问题,可以采用数据库连接池技术。数据库连.....
分类:
其他好文 时间:
2014-08-07 13:00:10
阅读次数:
284
Spring-MVC中@ResponseBody返回Bean到前台接收这么一串代码,还套着HTML标签:The resource identified by this request is only capable of generating responses with characteristi...
分类:
其他好文 时间:
2014-08-07 12:03:19
阅读次数:
191