Cargando…

Professional java for web applications : featuring websockets, spring framework, JPA hibernate, and spring security /

The comprehensive Wrox guide for creating Java web applications for the enterprise This guide shows Java software developers and software engineers how to build complex web applications in an enterprise environment. You'll begin with an introduction to the Java Enterprise Edition and the basic...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Williams, Nicholas S.
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Indianapolis, Indiana : Wiley, 2014.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Mi 4500
001 EBOOKCENTRAL_ocn876043682
003 OCoLC
005 20240329122006.0
006 m o d
007 cr cn|||||||||
008 140313t20142014inua o 001 0 eng d
040 |a E7B  |b eng  |e rda  |e pn  |c E7B  |d OCLCO  |d N$T  |d OCLCF  |d YDXCP  |d EBLCP  |d TEFOD  |d B24X7  |d STF  |d DEBSZ  |d COO  |d TEFOD  |d OCLCQ  |d RECBK  |d COCUF  |d CNNOR  |d MOR  |d PIFAG  |d ZCU  |d MERUC  |d OCLCQ  |d OCLCO  |d RRP  |d U3W  |d REB  |d NRAMU  |d CRU  |d H9Z  |d ICG  |d VTS  |d OCLCQ  |d INT  |d OCLCQ  |d G3B  |d TKN  |d OCLCQ  |d DKC  |d AU@  |d OCLCQ  |d UKAHL  |d OCLCQ  |d UKSSU  |d TUHNV  |d OCLCO  |d OCLCQ  |d OCLCO  |d OCLCL 
019 |a 871224374  |a 900415925  |a 961666471  |a 962726317  |a 964567394  |a 964644214  |a 1154854382 
020 |a 9781118656518  |q (electronic bk.) 
020 |a 1118656512  |q (electronic bk.) 
020 |a 9781118909317  |q (electronic bk.) 
020 |a 1118909313  |q (electronic bk.) 
020 |z 9781118656464 
020 |z 1118656466  |q (pbk.) 
020 |a 9781306472883  |q (ebook) 
020 |a 1306472881 
029 1 |a AU@  |b 000062531764 
029 1 |a CHNEW  |b 000690597 
029 1 |a CHNEW  |b 000690599 
029 1 |a CHNEW  |b 000886978 
029 1 |a DEBBG  |b BV043607782 
029 1 |a DEBSZ  |b 405662173 
029 1 |a NZ1  |b 15626927 
029 1 |a AU@  |b 000066761081 
029 1 |a AU@  |b 000073103568 
035 |a (OCoLC)876043682  |z (OCoLC)871224374  |z (OCoLC)900415925  |z (OCoLC)961666471  |z (OCoLC)962726317  |z (OCoLC)964567394  |z (OCoLC)964644214  |z (OCoLC)1154854382 
037 |a 3E3203C8-38C2-4C32-969A-10CCE6909150  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.73.J38  |b .W555 2014eb 
072 7 |a COM  |x 000000  |2 bisacsh 
072 7 |a COM.  |2 ukslc 
082 0 4 |a 006.76  |2 23 
084 |a DAT 362f  |2 stub 
084 |a DAT 675f  |2 stub 
049 |a UAMI 
100 1 |a Williams, Nicholas S. 
245 1 0 |a Professional java for web applications :  |b featuring websockets, spring framework, JPA hibernate, and spring security /  |c Nicholas S. Williams. 
264 1 |a Indianapolis, Indiana :  |b Wiley,  |c 2014. 
264 4 |c ©2014 
300 |a 1 online resource (938 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 
500 |a Includes index. 
588 0 |a Print version record. 
505 0 |a Professional: Java® for Web Applications; Copyright; About the Author; About the Technical Editors; Credits; Acknowledgments; Contents; Introduction; Who This Book Is For; Who This Book Is Not For; What You Will Learn in This Book; Part I: Creating Enterprise Applications; Part II: Adding Spring Framework Into the Mix; Part III: Persisting Data with JPA and Hibernate ORM; Part IV: Securing Your Application with Spring Security; What You Will Not Learn in This Book; What Tools You Will Need; Java Development Kit for Java SE 8; Integrated Development Environment; NetBeans IDE 8.0. 
505 8 |a Eclipse Luna IDE 4.4 for Java EE DevelopersIntelliJ IDEA 13 Ultimate Edition; Java EE 7 Web Container; Conventions Used in This Book; Code Examples; Maven Dependencies; Why Security Is at the End of the Book; Errata; Part 1: Creating Enterprise Applications; Chapter 1: Introducing Java Platform, Enterprise Edition; A Timeline of Java Platforms; In the Beginning; The Birth of Enterprise Java; Java SE and Java EE Evolving Together; Understanding the Most Recent Platform Features; A Continuing Evolution; Understanding the Basic Web Application Structure; Servlets, Filters, Listeners, and JSPs. 
505 8 |a Directory Structure and WAR FilesThe Deployment Descriptor; Class Loader Architecture; Enterprise Archives; Summary; Chapter 2: Using Web Containers; Choosing a Web Container; Apache Tomcat; GlassFish; JBoss and WildFly; Other Containers and Application Servers; Why You'll Use Tomcat in This Book; Installing Tomcat on Your Machine; Installing as a Windows Service; Installing as a Command-Line Application; Configuring a Custom JSP Compiler; Deploying and Undeploying Applications in Tomcat; Performing a Manual Deploy and Undeploy; Using the Tomcat Manager; Debugging Tomcat from Your IDE. 
505 8 |a Using IntelliJ IDEAUsing Eclipse; Summary; Chapter 3: Writing Your First Servlet; Creating a Servlet Class; What to Extend; Using the Initializer and Destroyer; Configuring a Servlet for Deployment; Adding the Servlet to the Descriptor; Mapping the Servlet to a URL; Running and Debugging Your Servlet; Understanding doGet(), doPost(), and Other Methods; What Should Happen during the service Method Execution?; Using HttpServletRequest; Using HttpServletResponse; Using Parameters and Accepting Form Submissions; Configuring your Application Using Init Parameters; Using Context Init Parameters. 
505 8 |a Using Servlet Init ParametersUploading Files from a Form; Introducing the Customer Support Project; Configuring the Servlet for File Uploads; Accepting a File Upload; Making Your Application Safe for Multithreading; Understanding Requests, Threads, and Method Execution; Protecting Shared Resources; Summary; Chapter:4 Using JSPs to Display Content; Is Easier Than output.println(""""); Why JSPs Are Better; What Happens to a JSP at Run Time; Creating Your First JSP; Understanding the File Structure; Directives, Declarations, Scriptlets, and Expressions; Commenting Your Code. 
520 |a The comprehensive Wrox guide for creating Java web applications for the enterprise This guide shows Java software developers and software engineers how to build complex web applications in an enterprise environment. You'll begin with an introduction to the Java Enterprise Edition and the basic web application, then set up a development application server environment, learn about the tools used in the development process, and explore numerous Java technologies and practices. The book covers industry-standard tools and technologies, specific technologies, and underlying programmi. 
590 |a ProQuest Ebook Central  |b Ebook Central Academic Complete 
650 0 |a Java (Computer program language) 
650 0 |a Web applications. 
650 6 |a Java (Langage de programmation) 
650 6 |a Applications Web. 
650 7 |a COMPUTERS  |x General.  |2 bisacsh 
650 7 |a Java (Computer program language)  |2 fast 
650 7 |a Web applications  |2 fast 
650 7 |a Anwendungssystem  |2 gnd 
650 7 |a Java EE 7  |2 gnd 
650 7 |a World Wide Web  |2 gnd 
758 |i has work:  |a Professional Java for web applications (Text)  |1 https://id.oclc.org/worldcat/entity/E39PCG6Bh4btmkkxGk9gqMjmbd  |4 https://id.oclc.org/worldcat/ontology/hasWork 
776 0 8 |i Print version:  |a Williams, Nicholas S.  |t Professional java for web applications : featuring websockets, spring framework, JPA hibernate, and spring security.  |d Indianapolis, Indiana : Wiley, ©2014  |h xxii, 900 pages  |z 9781118656464 
856 4 0 |u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=1638681  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26202948 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26186729 
938 |a Books 24x7  |b B247  |n bks00062587 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL1638681 
938 |a ebrary  |b EBRY  |n ebr10842292 
938 |a EBSCOhost  |b EBSC  |n 707187 
938 |a Recorded Books, LLC  |b RECE  |n rbeEB00436552 
938 |a YBP Library Services  |b YANK  |n 12673624 
938 |a YBP Library Services  |b YANK  |n 11678828 
994 |a 92  |b IZTAP