J2EE
nomad2
<a href="http://www.fi
展开
-
Use IBM Cloudscape with WebSphere Application Server Community Edition
Level: IntroductoryNell Gawor (mailto:ngawor@us.ibm.com?subject=Use IBM Cloudscape with WebSphere Application Server Community Edition&cc=ngawor@us.ibm.com), Advisory Software Engineer, IBMLin Sun (转载 2007-01-14 19:55:00 · 2692 阅读 · 0 评论 -
web.xml中load-on-startup标签的含义及struts jstl应用
From: http://quicker.iteye.com/blog/614327 在servlet的配置当中,5的含义是:标记容器是否在启动的时候就加载这个servlet。当值为0或者大于0时,表示容器在应用启动时就加载这个servlet;当是一个负数时或者没有指定时,则指示容器在该servlet被选择时才加载。正数的值越小,启动该servlet的优先级转载 2011-06-10 21:58:00 · 1055 阅读 · 0 评论 -
OpenFusion notification service
1. for notification service, refer to document http://www.prismtech.com/download-documents/6352. 简单的push event的例子(来自openfusion文档):Notifi原创 2011-08-18 21:07:11 · 1676 阅读 · 0 评论 -
AOP的一些想法
1. 刚开始写java的code时,总是感觉java的代码里面打log太麻烦了,在方法的入口和出口都要加上log。看来AOP可以很好的解决这个问题,把代码逻辑和打log的代码分离开。@Aspect AspectJ支持5种类型的通知,@Before @After @AfterReturning @AfterThrowing @Around2. 如何实现多重继承?AOP中有一种特殊的A原创 2012-06-09 22:21:44 · 455 阅读 · 0 评论 -
JBoss打开RMI调用trace
参考 https://developer.jboss.org/wiki/LoggingRMICalls?_sscc=tyou can enable logging of RMI calls by adding to the AS java start options: -Djava.rmi.server.logCalls=true原创 2016-03-12 14:47:16 · 704 阅读 · 0 评论 -
Building RESTful APIs with Tornado
from: http://www.drdobbs.com/open-source/building-restful-apis-with-tornado/240160382The Tornado Web framework makes it easy to write RESTful APIs in Python. How easy? Have a lookTornado i转载 2016-03-12 15:03:01 · 2162 阅读 · 0 评论