Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Mastering the Java Virtual Machine
Mastering the Java Virtual Machine

Mastering the Java Virtual Machine: An in-depth guide to JVM internals and performance optimization

Arrow left icon
Profile Icon Otavio Santana
Arrow right icon
R$50 per month
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.3 (7 Ratings)
Paperback Feb 2024 234 pages 1st Edition
eBook
R$80 R$178.99
Paperback
R$222.99
Subscription
Free Trial
Renews at R$50p/m
Arrow left icon
Profile Icon Otavio Santana
Arrow right icon
R$50 per month
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.3 (7 Ratings)
Paperback Feb 2024 234 pages 1st Edition
eBook
R$80 R$178.99
Paperback
R$222.99
Subscription
Free Trial
Renews at R$50p/m
eBook
R$80 R$178.99
Paperback
R$222.99
Subscription
Free Trial
Renews at R$50p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Mastering the Java Virtual Machine

Introduction to the Java Virtual Machine

In the ever-expanding software development universe, Java is a shining star known for its versatility, cross-platform capabilities, and robust performance. At the heart of Java’s exceptional capabilities lies the Java Virtual Machine (JVM), a sophisticated technology that serves as the backbone of the Java ecosystem. In this chapter, we embark on an enlightening journey to demystify the inner workings of the JVM, delving deep into its internals to unveil the secrets of its operation.

In this chapter, we will delve deeper into the historical evolution of the JVM, explore its architecture, and understand its role in executing Java applications. Furthermore, we’ll cover essential topics, such as bytecode, class loading, memory management, and the execution engine, which form the foundation of the JVM’s functioning. By the end of this chapter, you will possess the foundational knowledge needed to unravel the intricate inner...

Technical requirements

Exploring the evolution of Java

The Java programming language, along with its robust platform, has a storied history characterized by its unique and innovative features. A central figure in this narrative is the JVM, a crucial component that has left an indelible mark on Java’s evolution and enduring significance. The JVM plays a pivotal role in making Java what it is today, and its importance to Java’s history cannot be overstated.

The JVM is the linchpin that enables Java’s Write Once, Run Anywhere promise to become a reality. This promise, which redefined software development, directly responded to the challenges of creating software for networked consumer devices such as set-top boxes, routers, and other multimedia devices. By design, the JVM allows compiled Java code to be transported across networks, operate seamlessly on various client machines, and provide safety assurance. The JVM’s architecture and execution model ensures that Java programs...

An overview of the JVM

The JVM is the bedrock upon which the entire Java platform stands. It serves as the silent but omnipresent guardian of Java, facilitating its unique attributes. The JVM is responsible for the platform’s independence from specific hardware and operating systems, the compact size of compiled Java code, and its formidable ability to safeguard users against malicious programs.

In essence, the JVM is an abstract computing machine, not unlike a tangible computer you might find on your desk. It boasts an instruction set and manipulates various memory areas by executing code at runtime. Implementing a programming language using a virtual machine is not new, with one of the most prominent examples being the P-Code machine of UCSD Pascal. This foundation allows the JVM to transcend physical hardware and provide a consistent environment for Java applications.

The journey of the JVM, however, began with a prototype implementation at Sun Microsystems, Inc., where...

Summary

In this chapter, you have comprehensively understood the JVM, unraveling its critical role in executing Java applications. We explored the platform-specific nature of the JVM, emphasizing that, despite the Java language’s platform independence, each platform requires a distinct virtual machine implementation for optimal compatibility and performance.

The information provided in this chapter is invaluable for several reasons. Firstly, it demystifies the underlying workings of the JVM, shedding light on its role in making Java’s Write Once, Run Anywhere promise a reality. Understanding the JVM’s platform-specific adaptation is crucial for developers and practitioners in ensuring their Java applications perform optimally across diverse hardware and operating system environments.

Looking ahead to the next chapter, How the JVM Executes Java Code, you can expect a deeper dive into the dynamic processes that occur when Java code is executed within the JVM...

Questions

Answer the following questions to test your knowledge of this chapter:

  1. What is the primary purpose of the JVM?
    1. To write Java code
    2. To compile Java code
    3. To run Java applications
    4. To debug Java code
  2. How does the JVM handle boolean values?
    1. As a distinct data type
    2. As an array of bytes
    3. As an integer type
    4. As a floating-point type
  3. What is the initial state of a reference value in the JVM?
    1. Undefined
    2. Zero
    3. Null
    4. True
  4. Which of the following is not a type of reference in the JVM?
    1. Classes
    2. Arrays
    3. Interfaces
    4. Primitives
  5. What is the primary role of the returnAddress type in the JVM?
    1. Representing boolean values
    2. Managing method invocations and returns
    3. Handling exceptions
    4. Storing reference values

Answers

Here are the answers to this chapter’s questions:

  1. C. To run Java applications
  2. C. As an integer type
  3. C. Null
  4. D. Primitives
  5. B. Managing method invocations and returns
Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Uncover the intricacies of JVM, from class loading to garbage collection, and more
  • Master JVM memory management for efficient resource use and reduced overhead
  • Apply JVM knowledge through case studies, reinforcing your understanding of internals
  • Purchase of the print or Kindle book includes a free PDF eBook

Description

Mastering the Java Virtual Machine is a comprehensive guide that will take you into the heart of the Java programming language, guiding you through the intricate workings of the Java Virtual Machine (JVM) and equipping you with essential skills to become a proficient Java developer. You’ll start by understanding the JVM, exploring its architecture and how it executes Java code. Through detailed explanations and real-world examples, you’ll gain a deep understanding of JVM internals, enabling you to write efficient and optimized Java applications. As you progress, you’ll delve into memory management and execution, unraveling the complexities of heap and stack management, garbage collection, and memory profiling. You'll learn how memory is allocated and reclaimed in the JVM, as well as how to optimize memory usage and identify performance bottlenecks in your applications. With this knowledge, you’ll be able to create Java programs that are not only robust but also highly performant. By the end of this Java book, you’ll have the skills needed to excel in Java programming, writing efficient and maintainable code.

Who is this book for?

This book is for Java developers looking to deepen their expertise in the Java Virtual Machine (JVM) and optimize Java applications for peak performance. It is ideal for both intermediate-level and seasoned professionals, who want to explore specific aspects such as JVM internals, memory management, threading, security, and performance tuning.

What you will learn

  • Understand JVM architecture and bytecode execution
  • Explore memory management and optimize memory usage
  • Compare and evaluate alternative JVMs like GraalVM
  • Master reflection for dynamic behavior in Java applications
  • Use Java annotation processors for code generation
  • Get to grips with reactive programming principles for scalable applications

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Feb 29, 2024
Length: 234 pages
Edition : 1st
Language : English
ISBN-13 : 9781835467961
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Feb 29, 2024
Length: 234 pages
Edition : 1st
Language : English
ISBN-13 : 9781835467961
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
R$50 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
R$500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts
R$800 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total R$ 736.97
Mastering the Java Virtual Machine
R$222.99
Java Coding Problems
R$306.99
Java Memory Management
R$206.99
Total R$ 736.97 Stars icon

Table of Contents

18 Chapters
Part 1: Understanding the JVM Chevron down icon Chevron up icon
Chapter 1: Introduction to the Java Virtual Machine Chevron down icon Chevron up icon
Chapter 2: Class File Structure Chevron down icon Chevron up icon
Chapter 3: Understanding Bytecodes Chevron down icon Chevron up icon
Part 2: Memory Management and Execution Chevron down icon Chevron up icon
Chapter 4: Execution Engine Chevron down icon Chevron up icon
Chapter 5: Memory Management Chevron down icon Chevron up icon
Chapter 6: Garbage Collection and Memory Profiling Chevron down icon Chevron up icon
Part 3: Alternative JVMs Chevron down icon Chevron up icon
Chapter 7: GraalVM Chevron down icon Chevron up icon
Chapter 8: The JVM Ecosystem and Alternative JVMs Chevron down icon Chevron up icon
Part 4: Advanced Java Topics Chevron down icon Chevron up icon
Chapter 9: Java Framework Principles Chevron down icon Chevron up icon
Chapter 10: Reflection Chevron down icon Chevron up icon
Chapter 11: Java Annotation Processor Chevron down icon Chevron up icon
Chapter 12: Final Considerations Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.3
(7 Ratings)
5 star 42.9%
4 star 0%
3 star 14.3%
2 star 28.6%
1 star 14.3%
Filter icon Filter
Top Reviews

Filter reviews by




Sergio Sep 20, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
And this book will deliver what it promises, you start with Part 1, giving a great view of what we have inside the Java Virtual Machine (or JVM), giving a lesson on how it works, the class structure, bytecode.Then we will talk about Memory, going through how the Execution Engine works, how the JVM deals with Memory, we will talk about Garbage Collection and which one to use and when, how to deal with Memory Profiling, and here you will have a lesson on how How this whole part works and how you can use it to your advantage, with indications of extra reading that will expand your horizons about dealing with memory and GC in Java.Then you will explore the multiple flavors of JVM that you will find out there, such as GraalVM, Eclipse J9, Azul Zulu, Amazon Corretto, and so on. This topic is important for you to understand the diversity of this ecosystem and how it can help you.And it will end with some advanced topics to talk about Reflection and Annotation and also giving a great look at Frameworks.
Amazon Verified review Amazon
Otávio Gonçalves de Santana Sep 13, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
An excellent book for those who want to learn more about JVM, where the author covers several topics around Java and the JVM.
Amazon Verified review Amazon
Tiny May 09, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great book with step by step guides to use the JVM We all know how early Java had security flaws and issues. This provides comprehensive details about how to get to the next level, empowering your JVM solutions to deliver custom, secured applications. The real power in Java is in the write once, run anywhere methodology that supports multiple functions while maintaining consistent code base, recommend for anyone running any JVM implementations.
Amazon Verified review Amazon
Changsheng Yang May 07, 2024
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
Feefo Verified review Feefo
Alexander Motorin Jun 24, 2024
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
I'm already annoyed by the overuse of the words "seamless" and "pivotal". Everything is f...ign pivotal and seamless in this book. Generally author's vocabulary seems pretty limited, you'll read certain words over and over again until you can't take it anymore. The book is full of obsolete filler passages that gain you absolutely nothing — you're constantly educated that knowing this and that makes you master in dealing with xy, in some places quite laughable remarks even. There are plenty of them. I made it to page 40 and such unprecedented level of utmost poor, repetitive language feels almost infuriating at this point.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.