Cargando…

Tomcat 6 developer's guide : build better web applications by learning how a servlet container actually works /

"This book begins by providing detailed instructions on building a Tomcat distribution. The next few chapters introduce you to the conceptual underpinnings of web servers, the Java EE and servlet specifications, and the Tomcat container. Subsequent chapters address the key Tomcat components, ta...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Chetty, Damodar
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, U.K. : Packt Pub., ©2009.
Colección:From technologies to solutions.
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000Ia 4500
001 EBSCO_ocn646173271
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 100707s2009 enka ob 001 0 eng d
040 |a UMI  |b eng  |e pn  |c UMI  |d IDEBK  |d N$T  |d CEF  |d E7B  |d OCLCQ  |d DEBSZ  |d OCLCQ  |d DKDLA  |d YDXCP  |d OCLCQ  |d OCLCF  |d OCLCQ  |d LOA  |d JBG  |d AGLDB  |d MOR  |d PIFAG  |d OCLCQ  |d OCLCO  |d U3W  |d STF  |d WRM  |d VTS  |d COCUF  |d NLE  |d INT  |d OCLCQ  |d OCLCO  |d UKMGB  |d OCLCQ  |d OCLCO  |d M8D  |d UKAHL  |d HS0  |d UKCRE  |d OCLCO  |d OCLCQ 
015 |a GBB747523  |2 bnb 
016 7 |a 018011773  |2 Uk 
019 |a 667070470  |a 670782545  |a 712995562  |a 764546703  |a 961537620  |a 962633232  |a 966214801  |a 988479584  |a 992060037  |a 1037761329  |a 1038636045  |a 1153510139 
020 |a 9781847197290  |q (electronic bk.) 
020 |a 1847197299  |q (electronic bk.) 
020 |a 1847197280 
020 |a 9781847197283 
020 |z 9781847197283 
029 1 |a AU@  |b 000054174009 
029 1 |a DEBBG  |b BV043045014 
029 1 |a DEBSZ  |b 35544920X 
029 1 |a DEBSZ  |b 372798047 
029 1 |a DEBSZ  |b 421688246 
029 1 |a HEBIS  |b 291519172 
029 1 |a NZ1  |b 13869154 
029 1 |a UKMGB  |b 018011773 
029 1 |a AU@  |b 000067094139 
035 |a (OCoLC)646173271  |z (OCoLC)667070470  |z (OCoLC)670782545  |z (OCoLC)712995562  |z (OCoLC)764546703  |z (OCoLC)961537620  |z (OCoLC)962633232  |z (OCoLC)966214801  |z (OCoLC)988479584  |z (OCoLC)992060037  |z (OCoLC)1037761329  |z (OCoLC)1038636045  |z (OCoLC)1153510139 
037 |a CL0500000070  |b Safari Books Online 
050 4 |a TK5105.8885.A63  |b C554 2009 
072 7 |a COM  |x 060010  |2 bisacsh 
082 0 4 |a 005.71376  |2 22 
049 |a UAMI 
100 1 |a Chetty, Damodar. 
245 1 0 |a Tomcat 6 developer's guide :  |b build better web applications by learning how a servlet container actually works /  |c Damodar Chetty. 
246 3 |a Tomcat Six developer's guide 
260 |a Birmingham, U.K. :  |b Packt Pub.,  |c ©2009. 
300 |a 1 online resource (vii, 395 pages) :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a From technologies to solutions 
504 |a Includes bibliographical references and index. 
520 |a "This book begins by providing detailed instructions on building a Tomcat distribution. The next few chapters introduce you to the conceptual underpinnings of web servers, the Java EE and servlet specifications, and the Tomcat container. Subsequent chapters address the key Tomcat components, taking care to provide you with the information needed to understand the internal workings of each component. Detailed examples let you walk through a Tomcat installation, stepping into key Tomcat components, as well as into your own custom servlets. During the course of the book you will encounter various structural components such as the Server and Service; containers such as the Engine, Host, Context, and Wrapper; and helpers such as the Loader, Manager, and Valve. You will also see how Tomcat implements the JNDI API to provide both a directory service for storage agnostic access to its resources, as well as a naming service that implements the Java EE Environment Naming Context"--Resource description page. 
588 0 |a Print version record. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; Table of Contents; Preface; Chapter 1: Introduction to Tomcat; What's the story behind Tomcat?; What exactly is Tomcat?; JSPs; Servlet container; Why this book?; Gathering our tools; Java Development Kit (JDK) 6.0; Verifying downloaded files; Apache Ant; Subversion; Obtaining the Tomcat source code; Using Subversion; Tomcat source distribution; Getting ready to build Tomcat; Starting up your shiny new Tomcat; Eclipse; Summary; Chapter 2: Servlet API Overview; Java Community Process; Java Enterprise Edition platform 
505 8 |a What is an enterprise application?Simultaneous users; Highly available, reliable, and scalable; Heterogeneous environment; Distributed nature; Java EE architecture; Java based; Generic APIs; Java EE containers and container services; Java EE components and their APIs; Java EE Service APIs; What is a typical Java EE application architecture?; Hypertext Transfer Protocol (HTTP); Uniform Resource Locator, URL; HTTP methods; GET (HTTP/0.9); POST (HTTP/1.0); PUT (HTTP/1.1); DELETE (HTTP/1.1); TRACE (HTTP/1.1); OPTIONS (HTTP/1.1); HEAD (HTTP/1.0); HTTP requests; HTTP responses; The response line 
505 8 |a Response headersSpying on HTTP; What is the Servlet API?; Servlet container; Core servlet classes; Servlets; ServletConfig interface; ServletContext interface; Multithreading in servlets; Request; Response; Sessions; Filters; Listeners; Web applications; Deployment descriptors; Summary; Chapter 3: Servlet Container Overview; Component taxonomy; Architectural benefits; Top Level Components; Server; Service; Connectors; Container components; Engine; Virtual host; Context; Wrapper; Nested components; Valve; Realm; Executor; Listener; Manager; Loader; Logger; Resources; Summary 
505 8 |a Chapter 4: Starting Up TomcatUsing scripts; Setting up the environment; Executing the requested command; Setting up your project; Modifying the Run/Debug configuration; Bootstrapping Tomcat; Bootstrapping environment variables; Bootstrapping class loading; Bootstrapping the embedded container; Bootstrapping the Tomcat component hierarchy; Initializing the Server; Adding a new web application to Tomcat in Eclipse; Summary; Chapter 5: The Server and Service Components; Setting up your project; Installing MySQL; Installing the MySQL driver; Enhancing the devguide web application; JNDI service 
505 8 |a Basic JNDI conceptsUsing JNDI; StandardServer; Lifecycle; Shutdown; JNDI implementation; StandardService; Summary; Chapter 6: The Connector Component; Connector classification; Usage scenario; Protocol; Implementation architecture; Connector configuration; Binding attributes; Socket attributes; Thread parameters; The connector subsystem-a structural perspective; Modeling the Request and Response; Coyote and Catalina; Request classes; Response classes; HTTP classes; Stream classes; Helper classes; Socket programming; Socket options; The connector subsystem-a dynamic perspective 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Apache Tomcat. 
630 0 7 |a Apache Tomcat.  |2 blmlsh 
630 0 7 |a Apache Tomcat.  |2 fast  |0 (OCoLC)fst01399076 
650 0 |a Web servers. 
650 0 |a Web site development. 
650 0 |a Internet programming. 
650 6 |a Serveurs Web. 
650 6 |a Sites Web  |x Développement. 
650 6 |a Programmation Internet. 
650 7 |a COMPUTERS  |x Web  |x Browsers.  |2 bisacsh 
650 7 |a Web servers.  |2 blmlsh 
650 7 |a Web site development.  |2 blmlsh 
650 7 |a Internet programming.  |2 blmlsh 
650 7 |a Internet programming.  |2 fast  |0 (OCoLC)fst00977281 
650 7 |a Web servers.  |2 fast  |0 (OCoLC)fst01173235 
650 7 |a Web site development.  |2 fast  |0 (OCoLC)fst01173243 
776 0 8 |i Print version:  |a Chetty, Damodar.  |t Tomcat 6 developer's guide.  |d Birmingham, UK : Packt Publishing, 2009  |z 9781847197283  |w (OCoLC)556611055 
830 0 |a From technologies to solutions. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=334474  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781847197283/?ar  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26942871 
938 |a ebrary  |b EBRY  |n ebr10430398 
938 |a EBSCOhost  |b EBSC  |n 334474 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n 245159 
938 |a YBP Library Services  |b YANK  |n 3518120 
994 |a 92  |b IZTAP