Many to Many Hibernate/JPA Example

In Java Persistence API (JPA), the Many-to-Many relationship represents a common scenario where multiple instances of one entity are associated with multiple instances of another entity. This tutorial will guide you through the process of implementing a Many-to-Many relationship using JPA.

Read more

How to debug Web Service request and response

In this tutorial you will see how to trace your JBoss Web Services Requests by setting a System property from Apache CXF or using an external TCP dumper. Using a System Property to Debug SOAP Messages Debugging SOAP Messages is a critical activity for every application running Web Services. The simplest way to see the … Read more

Getting started with AtlasMap

This article is a whirlwind tour of AtlasMap Data transformation API and User Interface. We will learn how to use its editor to define mapping rules and how to use them in a sample Java Integration project.

Read more

JPA Entity Listeners

JPA Entity Listeners are a powerful feature of the Java Persistence API (JPA) that allow developers to specify callback methods for certain events that occur in an entity’s lifecycle. These events include pre-persist, post-persist, pre-update, post-update, pre-remove, and post-remove.

Read more

How to configure WildFly naming subsystem

This tutorial shows how you can configure the naming subsystem in WidFly and older JBoss AS versions The Java Naming and Directory Interface (JNDI) is a Java API for a directory service that allows Java software clients to discover and look up data and objects via a name. Like all other Java APIs also, JNDI … Read more