Book Image

Mastering Java EE Development with WildFly

By : Luca Stancapiano
Book Image

Mastering Java EE Development with WildFly

By: Luca Stancapiano

Overview of this book

Packed with rich assets and APIs, Wildfly 10 allows you to create state-of-the-art Java applications. This book will help you take your understanding of Java EE to the next level by creating distributed Java applications using Wildfly. The book begins by showing how to get started with a native installation of WildFly and it ends with a cloud installation. After setting up the development environment, you will implement and work with different WildFly features, such as implementing JavaServer Pages. You will also learn how you can use clustering so that your apps can handle a high volume of data traffic. You will also work with enterprise JavaBeans, solve issues related to failover, and implement Java Message Service integration. Moving ahead, you will be working with Java Naming and Directory Interface, Java Transaction API, and use ActiveMQ for message relay and message querying. This book will also show you how you can use your existing backend JavaScript code in your application. By the end of the book, you’ll have gained the knowledge to implement the latest Wildfly features in your Java applications.
Table of Contents (20 chapters)
5
Working with Distributed Transactions
16
WildFly in Cloud

The asynchronous annotation

The simplest thing to make an EJB asynchronous is through the @Asynchronous annotation. If a client calls an EJB marked with this annotation, it must not wait for the result because all the operations of the EJB will work in asynchronous mode. Here's a sample of an asynchronous singleton EJB:

@Singleton
@Asynchronous
public class AsyncBean {
private static final Logger logger = ...

public void ignoreResult(int a, int b) {
logger.info("it's asynchronous");
// here you can add an heavy payload!
}

public Future<Integer> longProcessing(int a, int b) {
return new AsyncResult<Integer>(a * b);
}
}

In this example, we have two methods--one void and one returning a result. The ignoreResult method will be executed in a few milliseconds despite a large amount of data being loaded. All the loading will be executed in...