tomcat connectors

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Sevlet Container » tomcat connectors 
tomcat connectors
License:Apache License
URL:http://tomcat.apache.org/
Description:
Package NameComment
org.apache.ajp
org.apache.ajp.tomcat33
org.apache.ajp.tomcat4
org.apache.ajp.tomcat4.config
org.apache.coyote
org.apache.coyote.http11
org.apache.coyote.http11.filters
org.apache.coyote.memory
org.apache.coyote.tomcat3
org.apache.coyote.tomcat4
org.apache.jk.ant
org.apache.jk.ant.compilers
org.apache.jk.apr
org.apache.jk.common
org.apache.jk.config
org.apache.jk.core

Jk2 interfaces

Core interfaces for jk2, similar with the interfaces defined in the C side ( jk2/include ).

The implementations are in common/ and server/.


org.apache.jk.server
org.apache.naming.ant
org.apache.naming.core
org.apache.naming.handler.jndi

Handler

Objects stored in the directory may have content - and act as a VFS. This package deals with accessing files in the directory using URLs. There are 2 cases: 1. Generic access via InitialContext. We will use a naming structure under the InitialContext to locate the file. jndi:/my/path will be translated to a lookup for '/my/path'. 2. The old behavior: the thread is specifically bound to a ProxyContext, then this is used to locate files in the particular webapp. We'll emulate this by treating jndi: as a reference to a particular branch in the java: webpp resource.
org.apache.naming.modules.cache
org.apache.naming.modules.fs
org.apache.naming.modules.id
org.apache.naming.modules.java
org.apache.naming.modules.memory
org.apache.naming.util
org.apache.tomcat.util
org.apache.tomcat.util.buf

Buffers and Encodings

This package contains buffers and utils to perform encoding/decoding of buffers. That includes byte to char conversions, URL encodings, etc.

Encoding is a critical operation for performance. There are few tricks in this package - the C2B and B2C converters are caching a ISReader/OSWriter and keep everything allocated to do the conversions in any VM without any garbage.

This package must accomodate future extensions and additional converters ( most imporant: the nio.charset, which should be detected and used if available ). Also, we do have one hand-written UTF8Decoder, and other tuned encoders could be added.

My benchmarks ( I'm costin :-) show only small differences between C2B, B2C and hand-written codders/decoders, so UTF8Decoder may be disabled.

org.apache.tomcat.util.collections util.collections

Specialized collections

This package includes a number of special collections, tunned for server-side applications. The utils are not tomcat specific, but use MessageBytes and few other top-level utils.
org.apache.tomcat.util.compat
org.apache.tomcat.util.http util.http Special utils for handling HTTP-specific entities - headers, parameters, cookies, etc. The utils are not specific to tomcat, but use util.MessageBytes.
org.apache.tomcat.util.http.mapper
org.apache.tomcat.util.log
org.apache.tomcat.util.net
org.apache.tomcat.util.net.jsse
org.apache.tomcat.util.net.puretls
org.apache.tomcat.util.res
org.apache.tomcat.util.threads
w___w__w___.__j__a__v__a2_s___.c__o_m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.