- 浏览: 123121 次
- 性别:
- 来自: 杭州
最新评论
-
lingqi1818:
<New class="org.eclipse ...
贪吃的jetty被撑死了 -
luyee2010:
话说这个帖子好老,看了下3.5.9发现已经是JUC的Concu ...
关于NIO的讨论 -
ahgf:
"之后去了Jboss",Trustin L ...
关于NIO的讨论
文章列表
自行编译源码
打开根目录下pom.xml,注释掉
<module>jetty-osgi</module>
<module>jetty-aggregate</module>
两个模块,
在编译这两个模块的时候碰依赖包找不到,索性将模块注释掉,不影响阅读核心代码。
参考
jetty总入口: http://www.eclipse.org/jetty/downloads.php
官方文档地址:http://wiki.eclipse.org/Jetty/Tutorial
(版本7以后)
http://docs ...
前端相关:
1.Diffable
is a method for reducing page load latency by transmitting differential encodings of static files. It works by sending deltas between versions of files that reside in a browser's cache. In web applications, files such as Javascript, HTML, and CSS are often updated every week or ...
目标: log4j做为jetty的日志实现
jetty日志原理:
jetty自己实现了一个日志工厂类org.eclipse.jetty.util.log.Log
该类被classloader加载的时会在classpath中查找有没有可用的日志接口(默认是slf4j,可以通过配置启动参数-Dorg.eclipse.jetty.util.log.class=xxxx来指定日志接口),如果找不到就用默认的标准输出日志实现(org.eclipse.jetty.util.log.StdErrLog)。
实现方法:
jetty/lib/ext下放入3个jar包slf4j-api-1.4 ...