Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Transitioning to Java

You're reading from   Transitioning to Java Kickstart your polyglot programming journey by getting a clear understanding of Java

Arrow left icon
Product type Paperback
Published in Apr 2023
Publisher Packt
ISBN-13 9781804614013
Length 354 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Ken Fogel Ken Fogel
Author Profile Icon Ken Fogel
Ken Fogel
Arrow right icon
View More author details
Toc

Table of Contents (23) Chapters Close

Preface 1. Part 1:The Java Development Environment
2. Chapter 1: Understanding Java Distributions FREE CHAPTER 3. Chapter 2: Code, Compile, and Execute 4. Chapter 3: The Maven Build Tool 5. Part 2:Language Fundamentals
6. Chapter 4: Language Fundamentals – Data Types and Variables 7. Chapter 5: Language Fundamentals – Classes 8. Chapter 6: Methods, Interfaces, Records, and Their Relationships 9. Chapter 7: Java Syntax and Exceptions 10. Chapter 8: Arrays, Collections, Generics, Functions, and Streams 11. Chapter 9: Using Threads in Java 12. Chapter 10: Implementing Software Design Principles and Patterns in Java 13. Chapter 11: Documentation and Logging 14. Chapter 12: BigDecimal and Unit Testing 15. Part 3:GUI and Web Coding in Java
16. Chapter 13: Desktop Graphical User Interface Coding with Swing and JavaFX 17. Chapter 14: Server-Side Coding with Jakarta 18. Chapter 15: Jakarta Faces Application 19. Part 4:Packaging Java Code
20. Chapter 16: Deploying Java in Standalone Packages and Containers 21. Index 22. Other Books You May Enjoy

What this book covers

Chapter 1, Understanding Java Distributions, presents a little history of the language, followed by how Java is distributed, downloaded, and installed for Windows, Linux, and macOS.

Chapter 2, Code, Compile, and Execute, prepares you to code, compile, and execute your first program. An IDE is not required, and you just need a text editor, and the latest version of Java installed on your PC.

Chapter 3, The Maven Build Tool, shows you how to manage programs that can consist of many files along with dependencies on external libraries is the purview of the Maven build tool.

Chapter 4, Language Fundamentals – Data Types and Variables, provides an introduction to what data types are available in Java and the operations we can perform on them.

Chapter 5, Language Fundamentals – Classes, introduces object-oriented programming as carried out in Java and revolves around the structure called a class.

Chapter 6, Methods, Interfaces, Records, and Their Relationships, examines the structures in which Java code is written. You will learn that classes have an interface, the public members of the class. An interface class enforces an interface, while a record represents an immutable data class. The relationships between classes are described.

Chapter 7, Java Syntax and Exceptions, introduces you to the low-level syntax of Java employed in methods, and what happens when things go wrong, an exception is thrown.

Chapter 8, Arrays, Collections, Generics, Functions, and Streams, examines how we process multiple data elements in Java using arrays and collections. Generics enhance type safety, functions enhance the processing of elements, and streams provide an alternative to loops for processing multiple items.

Chapter 9, Using Threads in Java, introduces you to one of Java’s greatest strengths, its inherent support of threads. The new threading approach called virtual threads is also examined.

Chapter 10, Implementing Software Design Principles and Patterns in Java, presents software design principles that provide guidance on how you construct your classes and how your objects should interact.

Chapter 11, Documentation and Logging, presents how you can document what a program does in the source code. Information about a program is shown while it is running using logging.

Chapter 12, BigDecimal and Unit Testing, demonstrates that when the accuracy of calculations, typically for currency, is required, then BigDecimal is the answer. Determining whether your program is delivering the correct results is the role of unit testing.

Chapter 13, Desktop Graphical User Interface Coding with Swing and JavaFX, presents the two Java graphical user interface (GUI) libraries, Swing and JavaFX, which support GUIs. You will see the same business logic presented using each library.

Chapter 14, Server-Side Coding with Jakarta, introduces you to backend web programming in Java. You will set up your application server and deploy Java code in the format of a servlet.

Chapter 15, Jakarta Faces Application, introduces you to server-side rendering of web pages. The application from Chapter 13, Desktop Graphical User Interface Coding with Swing and JavaFX, will now be presented as a Faces application.

Chapter 16, Deploying Java in Standalone Packages and Containers, shows we can distribute our applications. You will see how we can create installers for desktop programs and Docker containers for web applications commonly used for cloud deployment.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image