Cargando…

Beginning Jakarta EE web development : using JSP, JSF, MySQL, and Apache Tomcat for building Java web applications /

Start building Java-based web applications now, even if youre a complete newcomer to Java. Comprehensive and example-driven, this book is all you need to develop dynamic Java-based web applications using JSP, connect to databases with JSF, and put them into action using the popular open source Java...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Manelli, Luciano
Otros Autores: Zambon, Giulio
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Berkeley, CA : Apress, 2020.
Edición:3rd ed.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 a 4500
001 OR_on1182855882
003 OCoLC
005 20231017213018.0
006 m o d
007 cr un|---aucuu
008 200905s2020 cau o 000 0 eng d
040 |a EBLCP  |b eng  |e pn  |c EBLCP  |d STF  |d LQU  |d GW5XE  |d EBLCP  |d GZM  |d OCLCF  |d NLW  |d UKMGB  |d DCT  |d UKAHL  |d SFB  |d UMI  |d LVT  |d YDX  |d OCLCO  |d OCLCQ  |d UPM  |d VT2  |d ERF  |d OCLCQ 
015 |a GBC0F0549  |2 bnb 
016 7 |a 019874610  |2 Uk 
019 |a 1184055015  |a 1191081433  |a 1195453756  |a 1196167234  |a 1197540810  |a 1197551369  |a 1198158102  |a 1198816556  |a 1202416411  |a 1202567934  |a 1202970887  |a 1204083984  |a 1204099276  |a 1228552022  |a 1302271391 
020 |a 9781484258668  |q (electronic bk.) 
020 |a 1484258665  |q (electronic bk.) 
020 |z 9781484258651 
020 |a 1484258657 
020 |a 9781484258651 
024 7 |a 10.1007/978-1-4842-5866-8  |2 doi 
024 8 |a 10.1007/978-1-4842-5 
029 1 |a AU@  |b 000067830105 
029 1 |a AU@  |b 000068659063 
029 1 |a UKMGB  |b 019874610 
029 1 |a AU@  |b 000067877851 
035 |a (OCoLC)1182855882  |z (OCoLC)1184055015  |z (OCoLC)1191081433  |z (OCoLC)1195453756  |z (OCoLC)1196167234  |z (OCoLC)1197540810  |z (OCoLC)1197551369  |z (OCoLC)1198158102  |z (OCoLC)1198816556  |z (OCoLC)1202416411  |z (OCoLC)1202567934  |z (OCoLC)1202970887  |z (OCoLC)1204083984  |z (OCoLC)1204099276  |z (OCoLC)1228552022  |z (OCoLC)1302271391 
037 |a com.springer.onix.9781484258668  |b Springer Nature 
050 4 |a QA76.73.J38 
072 7 |a UMX  |2 bicssc 
072 7 |a COM051280  |2 bisacsh 
072 7 |a UMX  |2 thema 
082 0 4 |a 005.13/3  |2 23 
049 |a UAMI 
100 1 |a Manelli, Luciano. 
245 1 0 |a Beginning Jakarta EE web development :  |b using JSP, JSF, MySQL, and Apache Tomcat for building Java web applications /  |c Luciano Manelli, Giulio Zambon. 
250 |a 3rd ed. 
264 1 |a Berkeley, CA :  |b Apress,  |c 2020. 
300 |a 1 online resource (416 pages) 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
347 |b PDF 
588 0 |a Print version record. 
505 0 |a Intro -- Table of Contents -- About the Authors -- About the Technical Reviewer -- Introduction -- Chapter 1: Introducing JSP and Tomcat -- Installing Java -- What About Linux and macOS? -- Java Test -- Installing Tomcat -- What About Linux and macOS? -- Introduction to HTML -- What Is JSP? -- Viewing a JSP Page -- Hello World! -- Installing MySQL -- What About Linux and macOS? -- Installing Eclipse -- What About Linux and macOS? -- Eclipse Test: JSP in a New Web Project -- Listing the HTML-Request Parameters -- Summary -- Chapter 2: JSP Elements -- Introduction -- Scripting Elements and Java 
505 8 |a Scriptlets -- Expressions -- Declarations -- Data Types and Variables -- Objects and Arrays -- Operators, Assignments, and Comparisons -- Selections -- Iterations -- Implicit Objects -- The application Object -- Example: Using an Attribute to Enable and Disable Conditional Code -- The config Object -- The exception Object -- The out Object -- The pageContext Object -- The request Object -- More on Request Parameters and Client Info -- Example: Listing the Headers -- Example: Reading the Request Body -- The response Object -- The session Object -- Directive Elements -- The page Directive 
505 8 |a The include Directive -- The taglib Directive -- Summary -- Chapter 3: JSP Application Architectures -- The Model 1 Architecture -- The Model 2 Architecture -- E-bookshop -- E-bookshop's Structure -- The E-bookshop Home Page -- The E-bookshop Servlet -- More on E-bookshop -- Summary -- Chapter 4: Databases -- DBMS -- Structured Query Language -- INSERT -- UPDATE -- DELETE -- SELECT -- Introducing eshop application -- Entities and Operations -- Product Categories -- Books -- Shopping Cart -- Order -- Creating MySQL Schema and Tables -- MySQL/Tomcat Test -- Database Architecture -- Summary 
505 8 |a Chapter 5: Eshop Application -- A Better Online Bookshop -- Importing Eshop WAR File into Eclipse -- The Customer Interface -- The E-shop Architecture -- The Model -- The Controller -- Servlet Initialization -- Request Handling -- The View -- The E-shop Database Access -- Connecting to the Database -- Accessing Data -- The executeQuery Method -- The executeUpdate Method -- Transactions -- The E-shop Data Model -- Summary -- Chapter 6: JSP in Action -- JSP Standard Actions -- Actions: forward, include, and param -- Action: useBean -- Actions: setProperty and getProperty 
505 8 |a Actions: element, attribute, and body -- Action: text -- Actions: plugin, params, and fallback -- Comments and Escape Characters -- JSP's Tag Extension Mechanism -- Bodyless Custom Actions -- Step 1: Define the Tag Handler -- Step 2: Define the TLD -- Step 3: Use the Custom Action -- Bodied Custom Actions -- Step 1: Define the Tag Handler -- Step 2: Define the TLD -- Step 3: Use the Custom Action -- Tag Files -- Bodyless Tag -- Bodied Tag -- The tag Directive -- The attribute Directive -- The variable Directive -- JSTL and EL -- JSP Expression Language -- EL Expressions -- Using EL Expressions 
520 |a Start building Java-based web applications now, even if youre a complete newcomer to Java. Comprehensive and example-driven, this book is all you need to develop dynamic Java-based web applications using JSP, connect to databases with JSF, and put them into action using the popular open source Java web server, Apache Tomcat. Beginning Jakarta EE Web Development is a comprehensive introduction to building Java-based web applications using JSP, JSF, MySQL, and the Apache Tomcat web application server. Other APIs including JSON, JSTL, and XML parser are covered along the way. Key concepts are made easy to grasp with numerous working examples and a walk-through of the development of a complete ecommerce project. This book is written for professionals by practicing Java web application professionals and experts. You will: Build Java-based web applications using JSP and JSF with Eclipse Jakarta EE Configure your database with MySQL Define XML documents for your applications Use the Apache MyFaces APIs to create JSF applications Integrate and implement JSF and JSP together Build an online ecommerce web application. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Jakarta EE. 
650 0 |a Java (Computer program language) 
650 0 |a Web applications  |x Development. 
650 6 |a Java (Langage de programmation) 
650 6 |a Applications Web  |x Développement. 
650 7 |a computer programming.  |2 aat  |0 (CStmoGRI)aat300054641 
650 7 |a Web programming.  |2 bicssc 
650 7 |a Software Engineering.  |2 bicssc 
650 7 |a Programming & scripting languages: general.  |2 bicssc 
650 7 |a Computers  |x Web  |x Web Programming.  |2 bisacsh 
650 7 |a Computers  |x Software Development & Engineering  |x General.  |2 bisacsh 
650 7 |a Computers  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a Java (Computer program language)  |2 fast  |0 (OCoLC)fst00982065 
700 1 |a Zambon, Giulio. 
776 0 8 |i Print version:  |a Manelli, Luciano.  |t Beginning Jakarta EE Web Development : Using JSP, JSF, MySQL, and Apache Tomcat for Building Java Web Applications.  |d Berkeley, CA : Apress L.P., ©2020  |z 9781484258651 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484258668/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH37842945 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL6280381 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL6280317 
938 |a YBP Library Services  |b YANK  |n 301435431 
994 |a 92  |b IZTAP