- 浏览: 62396 次
- 来自: fantasy
最新评论
-
dygf1987:
还有别的原因吗?我的这三个都起来了
ORA-12560:协议适配器错误(oracle10g) -
wyt1213:
按说人种之间不应该存在这种心态的差别,那么,谁的过错造就大众这 ...
我又犯嫉妒了,借用此文鞭策下自己 -
Alrale:
网易安徽宿州网友 ip:6 ...
不内涵,聚光灯在评论处,你们懂得 -
Alrale:
dunhuacc12 写道Alrale 写道dunhuacc1 ...
人的性格真的不可以改变吗? -
dunhuacc12:
Alrale 写道dunhuacc12 写道突然间觉得超女也没 ...
人的性格真的不可以改变吗?
文章列表
Logger
Name
Added
Appenders
Additivity
Flag
Output Targets
Comment
root
A1
not applicable
A1
The root logger is anonymous but can be accessed with the
Logger.getRootLogger() method. There is no default appender
attached to root.
x
A-x1, A-x2
true
A ...
- 2008-10-16 09:49
- 浏览 888
- 评论(0)
Loggers are named entities. Logger names are case-sensitive and
they follow the hierarchical naming rule:
Named Hierarchy
A logger is said to be an ancestor
of another
logger if its name followed by a dot is a prefix of the
descendant
logger name. A logger is said to be a
par ...
- 2008-10-16 09:36
- 浏览 1080
- 评论(0)
One of the distinctive features of log4j is the notion of inheritance
in loggers. Using a logger hierarchy it is possible to control which
log statements are output at arbitrarily fine granularity but also
great ease. This helps reduce the volume of logged output and minimize
the cost of logging.
l ...
- 2008-10-16 08:47
- 浏览 1111
- 评论(0)
Log4j has three main components: loggers
,
appenders
and layouts
.
Log4j中有三个主要的组件,它们分别是 Logger、Appender和Layout。
1,Logger是记录日志的主体,描述它可以改变日志记录的表现。
Log4j
允许开发人员定义多个Logger,每个Logger拥有自己的名字。
有一个Logger称为Root,可以通过Logger.getRootLogger()方法获得。
其它Logger通过
Logger.getLogger(String name)方法获得。
2,Appender则是用来 ...
- 2008-10-07 14:12
- 浏览 930
- 评论(0)
try{
URL url = new URL(url_s);
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
/**
* public int getResponseCode()throws IOException
* 从 HTTP 响应消息获取状态码。
* 例如,就以下状态行来说:
* HTTP/1.0 200 OK
* HTTP/1.0 401 Unauthorized
* 将分别返回 200 和 401。
* 如果无法从响应中识别任何代码(即响应不是有效的 HTTP),则 ...
- 2008-09-09 17:26
- 浏览 4658
- 评论(0)
JSP 的执行过程
(1) 客户端发出Request (请求);
(2) JSP Container 将JSP转译成Servlet的源代码;
(3) 将产生的Servlet 的源代码经过编译后,并加载到内存执行;
(4) 把结果Response (响应)至客户端。
在执行 JSP 网页时,通常可分为两个时期:转译时期(Translation Time)和请求时期(Request Time)
转译时期:JSP网页转译成Servlet类。
请求时期:Servlet类执行后,响应结果至客户端。
注:
转译期间主要做了两件事情:将JSP网页转译为 Servlet 源代码(.java),此段 ...
- 2008-09-09 16:03
- 浏览 2283
- 评论(0)
2003年11月底,J2EE 1.4规范正式发布,Servlet也从原本的 2.3版升级至 2.4版。
其中主要新增的功能有以下三点:
(1) web.xml DTD 改用XML Schema;
(2) 新增 Filter四种设定;
(3) 新增 Request Listener、Event 和 Request Attribute Listener、Event。
1,web.xml DTD 改用XML Schema
Servlet 2.3版的web.xml 都是使用 DTD(Document Type Definition)来定义 XML 文件内容结构的。
web.xml一开始的声明 ...
- 2008-09-09 15:56
- 浏览 2691
- 评论(0)
Servlet/JSP Spec
Apache Tomcat version
2.5/2.1
6.0.18
2.4/2.0
5.5.27
2.3/1.2
4.1.37
2.2/1.1
3.3.2 (archived)
- 2008-09-09 15:43
- 浏览 1447
- 评论(0)
(1) 产生 Servlet,加载到Servlet Engine中,然后调用 init( )这个方法来进行初始化工作。
(2) 以多线程的方式处理来自Client 的请求。
(3) 调用 destroy( )来销毁Servlet,进行垃圾收集 (garbage collection)。
Servlet 生命周期的定义,包括如何加载、实例化、初始化、处理客户端请求以及如何被移除。
这个生命周期由javax.servlet.Servlet 接口的 init ( )、service( )和 destroy( )方法表达。
Servlet 从产生到结束的流程
1. 加载和实例化
当Cont ...
- 2008-09-09 15:25
- 浏览 968
- 评论(0)