Oracle WebLogic Server 12c: Advanced Administration II — Question 9

You have a multithreaded application that looks up the WebLoqic JMS ConnectionFactory object from the JNDI tree.
Which statement is correct in this scenario? (Choose the best answer.)

Answer options

Correct answer: B

Explanation

The correct answer is B because synchronization is necessary to prevent concurrent access issues when multiple threads are trying to use the ConnectionFactory object. Option A is incorrect as multithreaded applications can access the ConnectionFactory, but they must do so with synchronization. Options C and D are also wrong because they overlook the need for synchronization and the potential for exceptions when concurrent access occurs. Option E is inaccurate since connection objects can be created, but care must be taken to synchronize access.