`
文章列表
修改domain.xm,从cluster的java-config的-Xrunjdwp option中删除address属性。这会导致JVM为instance选择一个随机的debug port。在server log中可以看到选择的port number。例如:     *       Before:       debug-options="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,       suspend=n,address=9009"     *       After:       debug-opti ...
设置参数set -Dcom.sun.enterprise.server.ThreadedSystemAppStartup=true 可以强迫glassfish以多线程的方式启动系统应用。 ThreadedSystemAppStartup的缺省值为false,glassfish会顺序的启动系统应用。
打开ejb监控,可以看到sessionBeans,看不到Entity Beans。下面是段精彩的回答: "Entity Beans" is really a misnomer, specifically in the EJB context today. In EJB2, when we had CMP and BMP Entity Beans (we still do, but...), the Beans were first class components managed by the container much like session beans. With ...
netbeans中输入一些字符后通过代码模板可以生成一些代码,提高编码效率 fore+快捷键(tab或者空格,也可以自定义) for (Object elem : comparators) {                     } fori+快捷键(tab或者空格,也可以自定义) for (int i = 0; i < arr.length; i++) {                     } trycatch+快捷键(tab或者空格,也可以自定义) try {                     } catch (Exception e) {         ...
http://www.w3schools.com/DTD/default.asp The main building blocks of both XML and HTML documents are elements. -------------------------------------------------------------------------------- The Building Blocks of XML Documents Seen from a DTD point of view, all XML documents (and HTML documents ...
详细的条目说明在这里 http://docs.sun.com/app/docs/doc/819-4712/ablkn?a=view 其中的 一项schema http 含义 Message Queue client runtime makes an HTTP connection to an Message Queue tunnel servlet at the specified URL. (The broker must be configured to access the HTTP tunnel servlet, as described in the Message Queue ...
Java NIO类库Selector机制解析(上) 赵锟   陈皓 http://blog.csdn.net/haoel 一、  前言 自从J2SE 1.4版本以来,JDK发布了全新的I/O类库,简称NIO,其不但引入了全新的高效的I/O机制,同时,也引入了多路复用的异步模式。NIO的包 ...
http://www.crazysquirrel.com/computing/java/basics/java-thread-dump.jspx Generating a Thread Dump Windows The Java application that you want to produce a thread dump for must be running / started in a command console. When you want to produce a thread dump press Ctrl-Break Note: it's easier to prod ...
http://blog.csdn.net/roland101/archive/2008/03/16/2188585.aspx 最近压力测试和调优Liferay portal,所以需要找到一种工具,可以比较好的监测VM工具。本来想使用商用工具,但偶然间发现SUN 的JDK中新添了几个工具,并且非常好用。秉承着有免费 ...
jboss有个特点,在本机启动之后,只能在本机的网页访问 http://localhost:8080,在其他机器上访问不了jboss机器。解决方法: 在目录jboss-5.1.0.GA\server\default\deploy\jbossweb.sar下,编辑文件server.xml,找到这句: <Connector protocol="HTTP/1.1" port="8080" address="${jboss.bind.address}" 将${jboss.bind.address}改为0.0.0.0就可以了 或者在启 ...
Equinox项目是Eclipse开源组织提供的OSGi框架的实现。Eclipse自3.0版本开始,其内核移植到OSGi框架上。通过OSGi框架强大的组件控制,交互和管理能力,再加上Eclipse插件的自有特点,Eclipse开源框架得到了跳跃式的发展。同时,OSGi规范 ...
什么是中间件 中间件是分布计算机系统中集成各个组成的软件粘接剂。 也有人把中间件定义为网络环境中一组为许多应用需要的、可复用和可扩充的服务或(资源相关的)功能。 "Middleware can be viewed as a reusable, expandable set of ...
原文 http://www.ibm.com/developerworks/cn/opensource/os-ag-renegade6/ James欣赏的 ActiveMQ 特性之一是可以在消费者端进行负载平衡。消息组是一种不太为人所知的 JMS 可选特性。“它有点儿像 Web 应用程序的负载平衡,但是应用于消息传递,” 他说。假设您将来自 Amazon 站点的订单放进一个队列中,希望尽可能快地处理它们。JMS 提供者会在消费者之间根据负载平衡原则分配这些消息。但是,如果希望按照次序处理消息,就会遇到一个问题:只能使用一个消费者来处理消息,这样才能保证次序的完整性,才能正确地处理订单。 “所以 ...
原文: http://blog.csdn.net/jackiezhw/archive/2007/05/30/1631846.aspx 在使用RMI编程的时候,有时会出现如下的错误: java.rmi.ServerException: RemoteException occurred in server thread; nested excption is:         java.rmi.UnmarshalException: error unmarshalling argument ...
Transactional Memory 这个概念是从数据库中借来的。一个Transaction应该具有ACID的特性。 随着处理器发展的趋势,高质量的并发程序越来越重要。目前,编译器可以自动并行化程序的情况还比较有限,大量的并发程序是由程序员写出来 ...
Global site tag (gtag.js) - Google Analytics