Java

Intro to Istio blog series
Article

Istio Route Rules: Telling Service Requests Where to Go

Don Schenck

This article covers Istio Route Rules and telling Service Requests Where To Go. OpenShift and Kubernetes do a great job of working to make sure calls to your microservice are routed to the correct pods. What if, however, you want to customize the routing?

Effective Business Process Management with JBoss BPM
Article

Get Started on Process Driven Development with JBoss BPM

Eric D. Schabell

Read this article if you interested in an introduction to the concepts of process management (BPM); you want to learn how your business can leverage process driven application delivery; or you are looking for an easy to understand guide to mastering Red Hat JBoss BPM suite tooling.

MicroProfile
Article

MicroProfile Fault Tolerance in WildFly Swarm

Antoine Sabot-Durand

This article will describe the main features of the MicroProfile Fault Tolerance specification and then demonstrate how it was implemented in WildFly Swarm, the Red Hat MicroProfile implementation.

Intro to Istio blog series
Article

Istio: It makes a mesh of things

Don Schenck

this is an introduction to Istio. Istio helps automate the developer time to implement a feature. The combination of code complexity and code heft (i.e. number of lines of code) can put a drag on an implementation. Istio is a better way.

Red Hat JBoss Fuse image
Article

Get Started with Red Hat JBoss Fuse 7 Tech Preview 3 Today!

Christina Lin

Red Hat JBoss Fuse 7.0 technical preview three is out today! On the pathway to become one of the best cloud-native integration platforms, JBoss Fuse gives developers the freedom to choose how they want to develop the integration solution, where they want to deploy it.

Java logo
Article

Using Byteman to Find Out Why the TimeZone Changed on a Java App Server

Durgesh Anaokar

Using Byteman to Find Out Why the TimeZone Changed on a Java App Server. This article is about a real problem I faced where the timezone on a Java application server (in my case it was JBoss) changed unexpectedly during the run time of the server.

JBoss Data Virtualization: Integrating with Impala on Cloudera
Article

New Release of Red Hat JBoss Data Virtualization.

Thomas Qvarnström

Red Hat is proud to announce the release of JBoss Data Virtualization (JDV) 6.4 Overview JBoss Data Virtualization is a data integration solution that sits in front of multiple data sources and allows them to be treated as a single source, delivering the right data, in the required form, at the right time to any application and/or user. JDV 6.4 Features The JBoss Data Virtualization 6.4 release focuses on supporting new and updating existing cloud, big data, and in-memory data...

RedHat Shadowman Logo
Article

Scheduling Voxxed Days Zurich 2018 with OptaPlanner

Mario Fusco

all about scheduling speakers and rooms for Voxxed Days Zurich 2018 using the tool: OptaPlanner. This involves Reading, evaluating, discussing, and selecting from the 200+ proposals that arrive every year is a long and challenging process.

Java logo
Article

Java Class Metadata: A User Guide

Andrew Dinn

A user guide of Java Class Metadata. I presented a talk last week in the Free Java Room at FOSDEM 2018 on the subject of Java Class Metadata, explaining what it is, why it helps to know about it, what you might do to measure it, and reduce the impact of it's footprint on  your Java application.

Article Thumbnail
Article

Announcing Developer Studio 11.2.0.GA and JBoss Tools 4.5.2.Final for Eclipse Oxygen.2

Jeff Maury

The community editions of JBoss Tools 4.5.2 and JBoss Developer Studio 11.2 for Eclipse Oxygen.2 are here waiting for you. Check it out! Installation JBoss Developer Studio comes with everything pre-bundled in its installer. Simply download it from our JBoss Products page and run it like this: java -jar jboss-devstudio-.jar JBoss Tools or Bring-Your-Own-Eclipse (BYOE) JBoss Developer Studio require a bit more: This release requires at least Eclipse 4.7 (Oxygen) but we recommend using the latest Eclipse 4.7.2 Oxygen JEE...

MicroProfile
Article

Cloud-native development with Microprofile 1.2

Heiko Braun

This post provides an overview of the APIs and specifications in the Eclipse Microprofile 1.2 specification for Java. We connect these specifications and APIs with their architectural purpose for building robust cloud-native applications and microservices.

Eclipse Vert.x logo
Article

JUnit 5 support lands in Eclipse Vert.x for testing asynchronous operations

Julien Ponge

Eclipse Vert.x is increasingly popular for writing reactive applications on the JVM. Testing code with asynchronous operations is more challenging than it seems. JUnit 5 is a rewrite of the famous Java testing framework that brings new interesting features. Testing using JUnit 5 is now available in Vert.x

How to customize OpenShift RBAC permissions
Article

Structured application logs in OpenShift

Frédéric Giloux

Applications running on OpenShift get their logs automatically aggregated to provide very valuable information on their state and health during tests and in production. In this blog I am covering a few points that may help you with bringing your logs from raw material to a more valuable product.

Article Thumbnail
Article

Enabling Byteman Script with Red Hat JBoss Fuse and AMQ - Part 2

Chandra Shekhar Pandey

When using Byteman scripts for tracing and debugging with Red Hat JBoss Fuse and AMQ, learn how to use Java helper classes with for advanced options, such as viewing or modifying arguments, and utilizing 'java.util.logging' to inject messages into the existing logs.

RedHat Shadowman Logo
Article

Enabling SAML-based SSO with Remote EJB through Picketlink

Siddhartha De

you have a remote Enterprise JavaBeans (EJB) application where the EJB client is a service pack (SP) application in a Security Assertion Markup Language (SAML) architecture. You would like your remote EJB to be authenticated using same assertion which was used for SP.

Article Thumbnail
Article

Enabling Byteman Script with Red Hat JBoss Fuse and AMQ - Part1

Chandra Shekhar Pandey

In a production or customer environment it is not always possible to identify issues by looking at logs or setting up a remote debugging using IDE. Often the issues are specific to the environment and can't be reproduced. having byteman scripts can help in identifying issues without actual code changes.

Deploying to OpenShift e-book tile card
E-book

Deploying to OpenShift

Graham Dumpleton

Get an in-depth tour of OpenShift®, the container-based software deployment and management platform from Red Hat® that provides a secure multitenant environment for the enterprise. This practical guide describes in detail how OpenShift, building on Kubernetes, enables you to automate the way you create, ship, and run applications in a containerized environment.

Apache Camel logo
Article

Using Camel-Undertow component supporting http2 connection

Chandra Shekhar Pandey

This article would help to configure http2 protocol support for the camel-undertow component. Camel's undertow component use embedded undertow web-container of version undertow-core:jar:1.4.21. This version also supports the http2 connection. I have used camel version 2.21.0-SNAPSHOT from upstream https://github.com/apache/camel. Also, the curl version to test application using camel-undertow component is 7.53.1. This curl version supports --http2 flag for sending an http2 request. I have also used nghttp to test application from linux terminal. However, this article is not about http2...