Systems | Development | Analytics | API | Testing

Java

How Spring Changed Java Application Development

In this Kongcast episode, Josh Long, Spring Developer Advocate at VMware, dives into how Spring changed the way developers build Java applications and introduces you to Spring Native. Check out the transcript and video from our conversation below, and be sure to subscribe to get email alerts for the latest new episodes.

How to Resolve the NoSuchFieldError in Java

The NoSuchFieldError is an error in Java that occurs when a specified field does not exist. It is thrown when an application attempts to access or modify a field of an object or a static field of a class but the object or class no longer contains that field. The NoSuchFieldError only occurs during runtime if the definition of a class has changed incompatibly. Since it is thrown at runtime, it does not need to be declared in the throws clause of a method or constructor.

How to Fix Unsupported major.minor Version 52.0 Error in Java

The unsupported major.minor version error is thrown in Java when a class is compiled using a higher version of the Java Development Kit (JDK) but executed on a lower version of the Java Runtime Environment (JRE). The exact cause is printed on the version e.g. in the case of major.minor version 52.0, the class is compiled using JDK 8 since major version 52 corresponds to Java SE 8. This error can usually be fixed by running the application on the same (or higher) JRE version as the JDK.

How to Choose Your JVM-Based Language

When looking for modern languages for software development, you might have noticed that Java isn’t exactly the freshest solution out there. But it’s used in virtually all of IT, from client to server, web to mobile, and even machine learning and analytics. Plus, it comes with a good amount of experience spread throughout its communities. For over a decade now, the ecosystem around a JVM has no longer been just about the Java programming language.

Handling the ArithmeticException Runtime Exception in Java

Arithmetic is at the core of every program and every programming language in existence. From integer and floating-point arithmetic all the way down to bitwise and pointer arithmetic, these mathematical operations translate into machine instructions which execute with thundering speeds and manipulate the state of software applications used across all sorts of different domains.

Unleashing the power of Java UDFs with Snowflake

As part of the Snowpark developer experience, customers can execute Java user-defined functions (UDFs) packaged in a JVM right inside Snowflake’s powerful processing engine for better performance, scalability, and concurrency. These Java UDFs can be used for data preparation and enrichment pipelines, implementing custom business logic, and even to run machine learning model inference. In this session, Felipe Hoffa demonstrates how simple it is to get started with Java UDFs for your use case.