首页 > 其他
一步步了解ESB (一)你是否真正理解ESB?
谈及企业服务总线(ESB),在有面向服务的架构(SOA)实施经验的开发者眼中一定不会陌生。这些年,人们一直在谈论它,以至有些人认为“实施SOA一定需要ESB”,或“只要将ESB架起来了,我们就SOA了”。这些说法有可取之处,也存在片面之嫌,由于业界对于ESB没有统一、标准的定义,所以一千个人眼中有一千个“ESB”也就成了情理中的事情了。然而,怎么才能将ESB用好?我们需要清楚地认识ESB在SOA中...
分类:其他   时间:2014-03-30 13:34:38    收藏:0  评论:0  赞:0  阅读:528
LeetCode | First Missing Positive
题目 Given an unsorted integer array, find the first missing positive integer. For example, Given [1,2,0] return 3, and [3,4,-1,1] return 2. Your algorithm should run in O(n) time and uses ...
分类:其他   时间:2014-03-30 13:54:07    收藏:0  评论:0  赞:0  阅读:496
第2名 blog
http://my.csdn.net/yuanmeng001/message...
分类:其他   时间:2014-03-30 13:12:04    收藏:0  评论:0  赞:0  阅读:482
LeetCode | Count and Say
题目 The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, ... 1 is read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 21 is read...
分类:其他   时间:2014-03-30 12:55:27    收藏:0  评论:0  赞:0  阅读:519
项目错误提示Multiple markers at this line
新安装个Myeclipse,导入以前做的程序后程序里好多错,第一行提示: Multiple markers at this line         - The type java.lang.Object cannot be resolved. It is indirectly referenced from           required .class files...
分类:其他   时间:2014-03-30 14:30:17    收藏:0  评论:1  赞:1  阅读:1348
wustoj 1285 Factors
f(x)表示x分解的质因数的个数,求1-n中最大的f(X) (1 #include #include #include #include #include #define maxn 2000000 using namespace std; int cnt[maxn+5],ans[maxn+5]; vector prime; bool vis[maxn+5]; void init()...
分类:其他   时间:2014-03-30 13:42:00    收藏:0  评论:0  赞:0  阅读:605
生活编程(三) 简单的午睡闹钟
高手绕道,东西简单。         没发现有有AlarmManager的存在,不过也罢,用一下线程,震动和多媒体还是能解决午睡问题。午睡的时候不定时,每次都要调时间,其实我只要睡个15分钟,以前的天才生跟我讲的,午睡十五分钟相当于晚上的几个小时。...
分类:其他   时间:2014-03-30 13:27:05    收藏:0  评论:0  赞:0  阅读:625
C# 调用 CMD
C# 调用 CMD,关闭进程...
分类:其他   时间:2014-03-30 13:57:08    收藏:0  评论:0  赞:0  阅读:260
C#执行cmd
C#执行cmd...
分类:其他   时间:2014-03-30 14:19:36    收藏:0  评论:0  赞:0  阅读:519
ARM内核驱动—LED驱动程序设计
思维导图设计 led.c #include #include #include #include #include #include "led.h" #define LEDCON 0x7f008800 #define LEDDAT 0x7f008808 unsigned int *led_config; unsigned int *led_data; struct cde...
分类:其他   时间:2014-03-30 14:04:39    收藏:0  评论:0  赞:0  阅读:607
No identifier specified for entity: 解决方法
@Id写在setId()方法上了;  解决方法:@Id写在getId()方法上...
分类:其他   时间:2014-03-30 13:18:01    收藏:0  评论:0  赞:0  阅读:1325
rt.jar 限制访问 的解决方法
出现问题:在eclipse内建立java project , 其中MyHandler.java 中 import org.xml.helper. DefaultHandler , eclipse 提示Error . 问题截图: 解决方法:将eclipse -->windows-->java-->complier-->Errors/Warnings --> Deprecated an...
分类:其他   时间:2014-03-30 13:16:31    收藏:0  评论:0  赞:0  阅读:351
顺序栈实现十进制和八进制之间的转换
顺序栈实现十进制和八进制之间的转换 (1)首先实现栈的初始化,既申请固定大小的数组空间,存储数据,用到的方法是 int InitStack(  struct  sqstack  *s );  (2)接下来就是让数据入栈 ,用到的方法是int push(  struct  sqstack *s,int e )   (3)与数据入栈相对应的是数据出栈,用到的方法是 int pop(  struc...
分类:其他   时间:2014-03-30 13:37:39    收藏:0  评论:0  赞:0  阅读:872
装饰者模式
装饰者模式 Decorator模式(别名Wrapper):动态将职责附加到对象上,若要扩展功能,装饰者提供了比继承更具弹性的代替方案。 意图: 动态地给一个对象添加一些额外的职责。就增加功能来说,Decorator模式相比生成子类更为灵活。 设计原则: 1. 多用组合,少用继承。         利用继承设计子类的行为,是在编译时静态决定的,而且所有的子类都会继承到相同的行为。然而,如...
分类:其他   时间:2014-03-30 13:14:58    收藏:0  评论:0  赞:0  阅读:622
《黑马程序员》 往ThreadLocal中存多数据时的分析
------- android培训、java培训、期待与您交流! ----------package cn.itcast.thread; import java.util.Random; public class ThreadLocalDemo3 { /** * ThreadLocal类的使用。 * * 一个ThreadLocal只代表一个变量, * 但是如果我们的...
分类:其他   时间:2014-03-30 14:07:42    收藏:0  评论:0  赞:0  阅读:587
优先队列(堆)浅谈
1、概述 在分析堆之前,你可以理解一下队列和栈,其实他们都是对任务的一种调度策略,只是各自的准则不同罢了,队列为先进先出,栈为先进后出,而堆是每个任务分配了一个优先权,根据优先权进行任务的执行。调度程序通过堆始终能获取优先权最高的任务进行执行。比较常见应用为操作系统。 2、模型 堆又称为优先队列,其通常包括至少两种操作:insert(入队操作)和deleteMin(出队操作)。 3、实现方...
分类:其他   时间:2014-03-30 12:46:30    收藏:0  评论:0  赞:0  阅读:519
继承(组合)
package one.text; public class Animal {  private void beat(){    System.out.println("心脏跳动");  }  public void breath(){   beat();   System.out.println("吸一口气,吐一口气,呼吸中");     } }   public c...
分类:其他   时间:2014-03-30 12:53:52    收藏:0  评论:0  赞:0  阅读:546
ORA-01461: 仅能绑定要插入 LONG 列的 LONG 值
ORA-01461: 仅能绑定要插入 LONG 列的 LONG 值...
分类:其他   时间:2014-03-30 14:13:47    收藏:0  评论:0  赞:0  阅读:1261
2013年编程之美资格赛试题--传话游戏
编程之美--传话游戏...
分类:其他   时间:2014-03-30 13:51:06    收藏:0  评论:0  赞:0  阅读:657
【CareerCup】Stacks and Queues—Q3.3
转载请注明出处:    题目:    Imagine a (literal) stack of plates. If the stack gets too high, it might topple. Therefore, in real life, we would likely start a new stack when the previous stack exceeds some thr...
分类:其他   时间:2014-03-30 13:22:38    收藏:0  评论:0  赞:0  阅读:442
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!