Multiple choice technology web technology

What is the default transaction attribute in EJB in case of was6.0?

  1. Not Supported

  2. Required

  3. Supports

  4. RequiresNew

  5. Mandatory

  6. Never

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In WebSphere Application Server (WAS) 6.0, the default transaction attribute for EJB methods is Required. This means the method must run within a transaction: if one exists, it joins; if not, the container creates a new one. This follows the EJB specification's default.