摘要:
http://edocs.weblogicfans.net/wls/docs92/saf_admin/config_jms.htmlSAF JMS 示意图 图3-1 所示的是 SAF 代理将向 Domain1 中 Domain1Module-jms.xml 模块内 QueueSend 队列中生成的 JMS 消息转发到 Domain2 中 Domain2Module-jms.xml 模块内 QueueReceive 队列中的方式。 图 3-1 存储转发 JMS 消息 阅读全文
摘要:
http://onjava.com/lpt/a/6490Asynchronous Messaging Made Easy With Spring JMSby Srini Penchikala02/22/2006Asynchronous process communication is an important part of a service-oriented architecture (SOA), since many system communications in an enterprise, especially those with external organizations, 阅读全文
摘要:
http://sobaid.blogbus.com/logs/59873645.html一、什么是流:流是一个抽象的概念。当Java程序需要从数据源读取数据时,会开启一个到数据源的流。数据源可以是文件,内存或者网络等。同样,当程序需要输出数据到目的地时也一样会开启一个流,数据目的地也可以是文件、内存或者网络等。流的创建是为了更方便地处理数据的输入输出。流分为字节流和字符流。字节流也称为原始数据,需要用户读入后进行相应的编码转换。而字符流的实现是基于自动转换的,读取数据时会把数据按照JVM的默认编码自动转换成字符。字节流由InputStream和OutputStream处理,而字符流由Reade 阅读全文
摘要:
InputStream类的方法:int read() 从输入流中读取一个字节的内容,并且把这个内容以整数的形式返回。如果碰到流的结束处,那么返回的值就是“-1”;如果流没有结果,但临时没有数据可读,那read方法就将阻塞运行程序的执行过程,至到流中有新的数据可读。"到达流末尾,read方法返回的是-1",即意味着流中没有数据了,这一般用于判断读取文件内容是结束,即文件的结束符标志位; 如果是在socket上读,根据我的经验,这个方法是不灵光的,会有3种情况: 1. 网络断掉的话,抛出IOException; 2.例如流中只有八个字节了(对端仅写入了这么多)而你要read第9 阅读全文
摘要:
http://space.itpub.net/471666/viewspace-207344ORA-02064 distributed operation not supportedCause:One of the following unsupported operations was attempted:Array execute of a remote update with a subquery that references a database link, orAn update of a long column with bind variable and an update o 阅读全文