Web container: Difference between revisions

Content deleted Content added
WikiCleanerBot (talk | contribs)
m v2.02b - Bot T12 - WP:WCW project (Punctuation in link)
 
(14 intermediate revisions by 11 users not shown)
Line 1:
{{Short description|Component of Java web server}}
{{more citations needed|date=October 2015}}
A '''web container''' (also known as a servlet container;<ref>
Line 7 ⟶ 8:
| url = https://books.google.com/books?id=rY_1AAAAQBAJ
| series = Professional expertise distilled
| date = 20 September 2013
| publisher = Packt Publishing Ltd
| publication-date = 2013
| isbn = 9781849687959
| accessdateaccess-date = 2016-06-16
| quote = Java Servlets are governed by a web container (a Servlet container).
}}
Line 19 ⟶ 21:
| title = J2EE Framework for project development
| author = Puthal, B
| author-link1 =
| year = 2009
| access-date = 2016-06-15
| quote = The types of components within J2EE environment are [...] JSP or servlet as web components running inside webtainer [...]
}}
</ref>) is the component of a [[web server]] that interacts with [[JavaJakarta servletServlet]]s. A web container is responsible for managing the lifecycle of servlets, mapping a [[URL]] to a particular servlet and ensuring that the URL requester has the correct access-rights. A web container handles requests to [[Jakarta Servlet|servlet]]s, [[Jakarta Server Pages]] (JSP) files, and other types of files that include server-side code. The Web container creates servlet instances, loads and unloads servlets, creates and manages request and response objects, and performs other servlet-management tasks. A web container implements the web component contract of the [[Jakarta EE]] architecture. This architecture specifies a [[runtime environment]] for additional web components, including [[computer security|security]], [[concurrency (computer science)|concurrency]], [[Jakarta Servlet#Life cycle of a servlet|lifecycle management]], [[transaction processing|transaction]], deployment, and other services.
 
A web container handles requests to [[Java servlet|servlet]]s, [[JavaServer Pages]] (JSP) files, and other types of files that include server-side code. The Web container creates servlet instances, loads and unloads servlets, creates and manages request and response objects, and performs other servlet-management tasks.
 
A web container implements the web component contract of the [[Java Platform, Enterprise Edition|Java EE]] architecture. This architecture specifies a [[runtime environment]] for additional web components, including [[Computer security|security]], [[concurrency (computer science)|concurrency]], [[Java Servlet#Life cycle of a servlet|lifecycle management]], [[Transaction processing|transaction]], deployment, and other services.
 
==List of Servlet containers==
The following is a list of notable applications which implement the [[JavaJakarta Servlet]] specification from [[SunEclipse MicrosystemsFoundation]], divided depending on whether they are directly sold or not.
 
===Open source Web containers===
Line 38 ⟶ 35:
* [[Apache Geronimo]] is a full [[Java EE]] 6 implementation by [[Apache Software Foundation]].
* [[Enhydra Server|Enhydra]], from [[Lutris Technologies]].
* [[GlassFish]] from [[OracleEclipse Corporation|OracleFoundation]] (an [[application server]], but includes a web container).
* [[Jetty (web server)|Jetty]], from the [[Eclipse Foundation]]. Also supports [[SPDY]] and [[WebSocket]] protocols.
* Open Liberty, from IBM, is a fully compliant Jakarta EE server
* [[Jaminid]] contains a higher abstraction than servlets.
* [[Payara Server|Payara]] is another application server, derived from Glassfish.
* [[Winstone Servlet Container|Winstone]] supports specification v2.5 as of 0.9, has a focus on minimal configuration and the ability to strip the container down to only what you need.
* [[Tiny Java Web Server]] (TJWS) 2.5 [http://sourceforge.net/projects/tjws], small footprint, modular design.
* [[Virgo (software)|Virgo]] from [[Eclipse Foundation]] provides modular, [[OSGi]] based web containers implemented using embedded [[Apache Tomcat|Tomcat]] and [[Jetty (web server)|Jetty]]. Virgo is available under the [[Eclipse Public License]].
* [[WildFly]] (formerly JBoss Application Server) is a full [[Java EE]] implementation by [[Red Hat]], division [[JBoss (company)|JBoss]].
Line 49 ⟶ 43:
===Commercial Web containers===
* [[Oracle iPlanet Web Server|iPlanet Web Server]], from [[Oracle Corporation|Oracle]].
* [[JBoss Enterprise Application Platform]] from [[Red Hat]], division [[JBoss (company)|JBoss]] is [[Subscription|subscription-based]]/[[Open-source software|open-source]] [[JavaJakarta EE]]-based [[application server]].
* [[JRun]], from [[Adobe Systems]] (formerly developed by Allaire Corporation).
* [[WebLogic Application Server]], from [[Oracle Corporation]] (formerly developed by BEA Systems).
* [[Orion Application Server]], from [[IronFlare AB|IronFlare]].
* [[Resin Server|Resin Pro]], from Caucho Technology.
* [[ServletExec]], from [[New Atlanta|New Atlanta Communications]].
* [[IBM WebSphere Application Server]].
* [[SAP NetWeaver]].
* [[SpringSource tc Server|tc Server]], from [[SpringSource|SpringSource Inc.]]
 
==References==