227 Results for:JVM

  • Sort by: 

ObjectOutputStream example: A Java object serialization tutorial

By Cameron McKenzie 13 Jun 2018

Java object serialization is a feature of the JDK that is far too often overlooked. When a developer puts together a prototype or cooks up a proof of concept, simply saving a serialized Java object ... Read More

Celebrating 20 years of Java technology at JavaOne 2015

By Cameron McKenzie 26 Oct 2015

Twenty years is a pretty significant milestone, especially if you're a programming language. At JavaOne 2015, everyone is celebrating the 20th anniversary of the Java programming language, and looking ahead at the ... Read More

Scaling Your Java EE Applications -- Part 2

01 Jul 2008

Java applications can be scaled vertically (on a single system), or horizontally (across multiple systems). But to do either, you have to understand all parts of the system and software. Not doing so could defeat ... Read More

Scaling Your Java EE Applications

01 Jul 2008

In this article, Wang Yu takes real world cases as examples to explain ways on how to scale Java applications based on his experiences on the laboratory projects, and at the same time, bring together practice, ... Read More

New Java 7 Features: How to Use a More Precise Rethrow in Exceptions from Project Coin

12 Jan 2012

Afficionados of other languages such as Scala or Clojure are always slagging the fact that Java is too verbose and cumbersome. So, it's not too surprising to find out that Java 7 introduced a number of new ... Read More

Guiding design tenets behind OpenStack software

By Cameron McKenzie 20 May 2015

The importance of OpenStack design tenets is not lost on developers. Following these tenets drives the development and evolution of OpenStack software. Read More

Developing for the cloud: How developing in the cloud is different

01 Feb 2011

The benefits of cloud computing have been widely touted – business agility, scalability, efficiencies and cost savings among the top – and companies are migrating and building mission-critical Java applications ... Read More

Barry Burd's guide to the best sessions to attend at JavaOne 2015

By Barry Burd 15 Oct 2015

Going to JavaOne this year? Wondering which sessions to attend? Conference veteran Barry Burd is here to help guide your way through Oracle's big conference in San Francisco. Read More

Using REST APIs in AWS connects services, creates concerns

By David Carty 16 Jan 2017

APIs help developers connect services, but also create security and management concerns. This excerpt from 'Mastering AWS Development' explores REST API commands for AWS. Read More

Java 7 and the intricacies of safe and unsafe casting

26 Jan 2012

One of the problems with casting is that it does have the potential to cause a loss of precision, especially if the number that gets cast does indeed fall outside of the range of the target type. Here we will ... Read More