Accessing a Database Connection Pool from a Session EJB in JBoss AS

There may be situations in which it makes sense to access data from an EJB session bean using JDBC. Perhaps you are only reading values from a table and since you are not making any changes to the table, using an entity bean may seem like overkill. In this post I cover setting up a database connection pool in JBoss and accessing the database using JDBC from an EJB session bean.

. . . → Read More: Accessing a Database Connection Pool from a Session EJB in JBoss AS

Mapping Entity Relationships in EJB3

This post is a summary and a quick reference of entity relationship mapping under EJB3. . . . → Read More: Mapping Entity Relationships in EJB3

Accessing a Remote Session EJB under JBoss

This post explains how to access a Session EJB in a JBoss application server from a client application using a remote interface. . . . → Read More: Accessing a Remote Session EJB under JBoss

EJB Configuration under JBoss

This post describes JBoss settings that are relevant to Enterprise JavaBeans . . . → Read More: EJB Configuration under JBoss

EJB3 Inheritance

How to implement inheritance in EJB3 . . . → Read More: EJB3 Inheritance

Enterprise JavaBeans 3.0 Step by Step

A step by step guide to EJB 3 . . . → Read More: Enterprise JavaBeans 3.0 Step by Step