JSP Tutorials - Herong's Tutorial Examples

JSP Tutorials - Herong's Tutorial Examples PDF

Author: Herong Yang

Publisher: HerongYang.com

Published: 2006-01-01

Total Pages: 376

ISBN-13:

DOWNLOAD EBOOK →

This book is a collection of notes and sample codes written by the author while he was learning JSP (JavaServer Pages). Topics include Tomcat installation and configuration to support JSP; JSP execution context, JSP elements, and sessions; Using JavaBean Classes; Cookie management; Controlling HTTP Response Header Lines; Supporting non-ASCII characters and localization; Debugging and measuring performance; Using EL (Expression Language); JSTL (JSP Standard Tag Library) syntax and Tag Java interface; Managing file uploads. Updated in 2022 (Version v5.11) with minor changes. For latest updates and free sample chapters, visit https://www.herongyang.com/JSP.

Java GC Tutorials - Herong's Tutorial Examples

Java GC Tutorials - Herong's Tutorial Examples PDF

Author: Dr. Herong Yang

Publisher: HerongYang.com

Published: 2019-09-07

Total Pages: 717

ISBN-13:

DOWNLOAD EBOOK →

This book is a collection of tutorial notes and sample codes written by the author while he was learning JVM GC (Garbage Collection) processes. Topics include Java Garbage Collectors, STW (Stop-The-World), Serial Collector, Parallel Collector, Concurrent Collector, G1 Collector, GC Algorithms, Generational GC, Regional GC, Heap Memory Management, Young/New Generation, Tenured/Old Generation, Object Reference, Eden Space, Survivor Spaces, Minor GC, Major GC, Full GC, Performance Tuning, Throughput/Latency Performance, Heap Footprint. Updated in 2022 (Version v1.11) with JVM 17. For latest updates and free sample chapters, visit https://www.herongyang.com/Java-GC.

Advanced JAVA for Beginners

Advanced JAVA for Beginners PDF

Author: Navi Feroz

Publisher:

Published: 2018-07-07

Total Pages: 241

ISBN-13: 9781983361852

DOWNLOAD EBOOK →

Java Server Pages (JSP) is a server side technology for developing dynamic web pages. This is mainly used for implementing presentation layer (GUI Part) of an application. A complete JSP code is more like a HTML with bits of java code in it. JSP is an extension of servlets and every JSP page first gets converted into servlets by JSP container before processing the client's request.These tutorials are also written for beginners, so even if you have no prior knowledge in this, you won't face any difficulty understanding these tutorials.

Servlet & JSP

Servlet & JSP PDF

Author: Budi Kurniawan

Publisher: Brainy Software Inc

Published: 2012-01-23

Total Pages: 484

ISBN-13: 0980839629

DOWNLOAD EBOOK →

Servlet and JavaServer Pages (JSP) are the underlying technologies for developing web applications in Java. They are essential for any programmer to master in order to effectively use frameworks such as JavaServer Faces, Struts 2, or Spring MVC. Covering Servlet 3.0 and JSP 2.2, this book explains the important programming concepts and design models in Java web development as well as related technologies and new features in the latest versions of Servlet and JSP. With comprehensive coverage and a lot of examples, this book is a guide to building real-world applications.

Servlet & JSP: A Beginner's Tutorial

Servlet & JSP: A Beginner's Tutorial PDF

Author: Budi Kurniawan

Publisher: Brainy Software Inc

Published: 2016-05-02

Total Pages: 377

ISBN-13: 1771970324

DOWNLOAD EBOOK →

Servlet and JavaServer Pages (JSP) are the underlying technologies for developing web applications in Java. They are essential for any programmer to master in order to effectively use frameworks such as JavaServer Faces, Struts 2, or Spring MVC. Covering Servlet 3.1 and JSP 2.3, this book explains the important programming concepts and design models in Java web development as well as related technologies and new features in the latest versions of Servlet and JSP. With comprehensive coverage and a lot of examples, this book is a guide to building real-world applications.

Servlet & JSP

Servlet & JSP PDF

Author: Budi Kurniawan

Publisher:

Published: 2016

Total Pages: 374

ISBN-13:

DOWNLOAD EBOOK →

Servlet and JavaServer Pages (JSP) are the underlying technologies for developing web applications in Java. They are essential for any programmer to master in order to effectively use frameworks such as JavaServer Faces, Struts 2, or Spring MVC. Covering Servlet 3.1 and JSP 2.3, this book explains the important programming concepts and design models in Java web development as well as related technologies and new features in the latest versions of Servlet and JSP. With comprehensive coverage and a lot of examples, this book is a guide to building real-world applications.

PHP Tutorials - Herong's Tutorial Examples

PHP Tutorials - Herong's Tutorial Examples PDF

Author: Herong Yang

Publisher: HerongYang.com

Published: 2019-01-01

Total Pages: 472

ISBN-13:

DOWNLOAD EBOOK →

This PHP tutorial book is a collection of notes and sample codes written by the author while he was learning PHP himself. Topics include PHP script syntax; data types, variables, array, expressions, statements and functions; Web server integration; HTTP requests and controlling HTTP responses; sessions, cookies, and file uploads/downloads; MySQL database server access; files, directories, and ZIP archives; parsing HTML Documents; processing image files; SOAP extension; managing non-ASCII characters; classes and objects; using PHP on Windows, macOS and Linux; executing external programs on operating system. Updated in 2022 (Version v5.16) with minor changes. For latest updates and free sample chapters, visit https://www.herongyang.com/PHP.

JVM Tutorials - Herong's Tutorial Examples

JVM Tutorials - Herong's Tutorial Examples PDF

Author: Herong Yang

Publisher: HerongYang.com

Published: 2020-10-10

Total Pages: 362

ISBN-13:

DOWNLOAD EBOOK →

This book is a collection of notes and sample codes written by the author while he was learning JVM himself. Topics include JVM (Java Virtual Machine) Architecture and Components; Oracle JVM implementation - HotSpot; Eclipse JVM implementation - Eclipse OpenJ9; java.lang.Runtime - The JVM Instance class; Loading Native Libraries; java.lang.System - Representing Operating System; java.lang.ClassLoader - Loading class files; java.lang.Class - Class reflections; Runtime data areas, heap memory and Garbage Collection; Stack, Frame and Stack overflow; Multi-threading impacts on CPU and I/O; CDS (Class Data Sharing); Micro Benchmark tests on different types of operations. Updated in 2024 (Version v5.13) with HotSpot JVM 20. For latest updates and free sample chapters, visit https://www.herongyang.com/JVM.

Unicode Tutorials - Herong's Tutorial Examples

Unicode Tutorials - Herong's Tutorial Examples PDF

Author: Herong Yang

Publisher: HerongYang.com

Published: 2019-01-01

Total Pages: 306

ISBN-13:

DOWNLOAD EBOOK →

This Unicode tutorial book is a collection of notes and sample codes written by the author while he was learning Unicode himself. Topics include Character Sets and Encodings; GB2312/GB18030 Character Set and Encodings; JIS X0208 Character Set and Encodings; Unicode Character Set; Basic Multilingual Plane (BMP); Unicode Transformation Formats (UTF); Surrogates and Supplementary Characters; Unicode Character Blocks; Python Support of Unicode Characters; Java Character Set and Encoding; Java Encoding Maps, Counts and Conversion. Updated in 2024 (Version v5.32) with minor changes. For latest updates and free sample chapters, visit https://www.herongyang.com/Unicode.

Android Tutorials - Herong's Tutorial Examples

Android Tutorials - Herong's Tutorial Examples PDF

Author: Herong Yang

Publisher: HerongYang.com

Published: 2021-05-01

Total Pages: 346

ISBN-13:

DOWNLOAD EBOOK →

This book is a collection of notes and sample codes written by the author while he was learning Android system. Topics include Installing of Android SDK on Windows, Creating and running Android emulators, Developing First Android Application - HelloAndroid, Creating Android Project with 'android' Command, Building, Installing and Running the Debug Binary Package, Inspecting Android Application Package (APK) Files, Using Android Debug Bridge (adb) Tool, Copying files from and to Android device, Understanding Android File Systems, Using Android Java class libraries, Using 'adb logcat' Command for Debugging. Updated in 2023 (Version v3.05) with ADB tutorials. For latest updates and free sample chapters, visit https://www.herongyang.com/Android.