EJB是企业级JavaBean,是一种分布式的具体实现。EJB的企业Bean分为三种,分别是Session Bean(会话Bean)、其中有分为Stateless Session Bean(无状态会话Bean)、Statefule Session Bean(有状态会话Bean);Message Driven Bean(消息驱动Bean)、Persistence(持久化)的Entity Bean(实体Bean)。这篇主要讲解Session Bean...
分类:
编程语言 时间:
2015-07-31 21:56:59
阅读次数:
159
单链表删除节点
node *del(node *head, int num)
{
node *p1, *p2;
p1 = head;
while (num != p1->data && p1->next != NULL)
{
p2 = p1;
p1 = p1->next;
}
if (num == p1->data)
{
if (p1 == head)
hea...
分类:
其他好文 时间:
2015-07-31 21:54:30
阅读次数:
452
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include using namespace std;
#def...
分类:
其他好文 时间:
2015-07-31 21:53:47
阅读次数:
101
代理模式的意图:
为其它对象提供代理,以控制对这个对象的访问。对一个对象进行访问控制的原因是为了我们在确实需要这个对象时才对它进行创建和初始化。有些对象创建的开销非常大,所以我们应该根据需要进行创建。Proxy则可以代替一个对象,并在需要时负责实例化这个对象。就像我们小学的时候总是欺负学习好的同学,让学习好的同学代替我们写作业,要不然我们就会欺负学习好的同学。这就是一个很好的代理模式的例子。
...
分类:
其他好文 时间:
2015-07-31 21:54:37
阅读次数:
120
昨天受一朋友要求,帮忙写一个用C++读取注册表的程序。这个朋友是搞Java的,肯定不知道C++怎么写啦!他的需求也奇怪:用js调用一个浏览器插件,通过插件获取注册表中指定键的值,插件肯定是用C++写了。于是乎我就在网上查了一下“C++读取注册表”,一搜一大片但都是一些初学C++的人写的,多数不能用,而且那写的程序真是无力吐槽……一怒之下我就自己花一个小时写了一个,费话不说了,直接上代码:C++读取注...
分类:
编程语言 时间:
2015-07-31 21:55:59
阅读次数:
212
企业搭建虚拟化平台之后的第一件事肯定是将现有的服务器应用业务转移到虚拟服务器上,这就是虚拟化整合服务器的第一步,也是虚拟化程序的基础功能之一:P2V的转化功能。AD:企业搭建虚拟化平台之后的第一件事肯定是将现有的服务器应用业务转移到虚拟服务器上,这就是虚拟化整合服务器的第一步,也是虚拟化程序的基础功...
分类:
其他好文 时间:
2015-07-31 21:52:44
阅读次数:
229
亲爱的儿子,那个叫你乖的人,是在你小的时候天天陪着你的人,是在你过马路时紧紧攥住你的手的人。他是在你委屈时给你怀抱,孤单时给你陪伴,疼痛时给你抚慰,寒冷时给你温暖,饥饿时给我美食,跌倒时给你扶持,错误时给你指正的人。亲爱的儿子,那个叫你乖的人,他总是有意无意的盯着你的眼睛和脸庞,温柔的为你沐浴,他的...
分类:
其他好文 时间:
2015-07-31 21:52:16
阅读次数:
104
在Spouts和bolts中出现了Executors 执行器和Tasks 任务的概念在Toplogy 中有个workers,Toplogy运行在workers上面,Workers 上面一般指进程数Storm集群中的一台机器 可以运行一个或多个workers process,workers大小可以设置...
分类:
其他好文 时间:
2015-07-31 21:54:02
阅读次数:
359
一、EI.cfg说明Windows 7 安装光盘中存在着 SOURCES\EI.CFG 这样一个配置文件。EI.cfg 是特定于 Windows 安装程序的配置文件,用于确定在安装过程中应该使用哪种版本和许可证。EI.cfg 是基于文本的文件。[EditionID]Ultimate[Channel]...
分类:
其他好文 时间:
2015-07-31 21:52:12
阅读次数:
271
DescriptionToday on a lecture about strings Gerald learned a new definition of string equivalency. Two stringsaandbof equal length are calledequivalen...
分类:
其他好文 时间:
2015-07-31 21:54:51
阅读次数:
127
Let us consider sets of positive integers less than or equal to n. Note that all elements of a set are different. Also note that the order of element....
分类:
其他好文 时间:
2015-07-31 21:51:40
阅读次数:
205
A. Case of the Zeros and OnesDescriptionAndrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing...
分类:
其他好文 时间:
2015-07-31 21:52:30
阅读次数:
241
//zjnu 1399//sort 数组可用//vector sort(vector)#include#includeusing namespace std;int s[10000000];int main(){ int n; int i; int k=0; while(sc...
分类:
其他好文 时间:
2015-07-31 21:51:51
阅读次数:
141
题目链接求对应区间最大值与最小值的差;#include#include#include#include#define INF 0xfffffff#define N 50010using namespace std;#define Lson r>1; }}a[N*4];int MIN,MAX;v...
分类:
其他好文 时间:
2015-07-31 21:51:19
阅读次数:
151
using System;namespace Test{ class Test1 { static void Main(string[] args) { string str1 = "123"; string str2 = str1; str1 = "456"; Console....
摘要 对于现在主流的j2ee企业级开发而言,ssh(struts+hibernate+spring)依然是一个事实的标准。由struts充当的mvc调度控制;hibernate的orm持久化映射;spring的ioc和aop的容器环境近乎于完美的框架组合。但是,在实际的开发工作中,由于程序猿对于技术...
分类:
数据库 时间:
2015-07-31 21:53:58
阅读次数:
316
@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations = { "classpath:/applicationContext.xml" })@TestExecutionListeners({ DependencyI...
分类:
编程语言 时间:
2015-07-31 21:52:15
阅读次数:
147