Java
文章平均质量分 69
xang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Axis2 notes
1. set env var: JAVA_HOME, AXIS2_HOME(setenv.sh)path: AXIS2_HOME/bin2. start up standard alone axis server: $AXIS2_HOME/bin/axis2server.shhttp://localhost:8080/axis2/services/3. ant create.war ($A...2008-07-17 06:48:54 · 117 阅读 · 0 评论 -
Java系统的堆栈跟踪
如何生成堆栈的Dump?有下面3种方法,可以得到Java系统的堆栈信息。1、给JVM发生信号 UNIX/Linux: kill -3 <pid> Windows: Ctrl + Break2、JVM运行时,内部错误引发显示堆栈信息3、使用debug工具或者Java程序调用在Java debuger中输入命令where,或用如下方法可以得到部分...原创 2010-06-19 01:53:04 · 229 阅读 · 0 评论 -
Java Extension Mechanism
Java 1.2引入了扩展机制(the extension mechanism)。 Extensions 是一组packages和classes,通过the extension mechanism来增加Java平台功能。 扩展机制让我们运行应用时,不用在classpath写extension classes的路径,就能让Java运行环境查找和装载这些extension classes。 Ext...原创 2010-07-02 12:09:49 · 709 阅读 · 0 评论 -
Servelet
Servlet LifecycleThe lifecycle of a servlet is controlled by the container in which the servlet has been deployed.If an instance of the servlet does not exist, the web container Loads the servle...原创 2010-10-12 09:59:22 · 284 阅读 · 0 评论 -
web services
Java API for XML Web Services (JAX-WS)Java API for RESTful Web Services (JAX-RS) JAX-WS supports the Web Services Interoperability (WS-I) Basic Profile Version 1.1. The WS-I Basic Profile is a d...原创 2010-10-12 16:20:18 · 149 阅读 · 0 评论 -
Web设计相关
所有架构级的设计决策应该根据被设计系统的功能、行为和社会学等方面的需求来作出,这是一个原则,既适用于软件架构,同样也适用于传统的建筑架构领域。“形式追随功能”的指导方针来自从数百年失败的建筑项目中获得的经验,但是却常常被软件从业者忽视。 design-by-buzzword(按照时髦的词汇来做设计)是一种常见的现象。 一个软件架构是一个软件系统在其操作的某个阶段的运行时(run-t...原创 2010-10-13 12:51:48 · 146 阅读 · 0 评论 -
EJB
To improve performance, you might choose a stateless session bean if it has any of these traits.The bean’s state has no data for a specific client.In a single method invocation, the bean performs...原创 2010-10-13 15:20:59 · 142 阅读 · 0 评论 -
Spring 3
Spring内置了2个基础DI容器: BeanFactory、ApplicationContext。ApplicationContext extends BeanFactory {}BeanFactory提供基本功能。ApplicationContext适合企业级使用。BeanFactory注入有惰性。注入方式:设值注入构造函数注入属性注入方法注入【引】...原创 2010-10-14 18:17:13 · 156 阅读 · 0 评论
分享