nicholas
nicholas

Reputation: 2762

Advantages of JBoss JDBC Driver As Module Over Application JDBC Driver Configuration

I would like to know the benefits of configuring JDBC Driver in JBoss As a module than package JDBC driver in application in terms of

connection pool data source caching distributed environment

Please enlighten this. Thanks.

Upvotes: 0

Views: 76

Answers (1)

Peter Cetinski
Peter Cetinski

Reputation: 2336

Module datasources

  1. are shareable across multiple applications.
  2. integrate with all of the monitoring and management facilities of JBoss AS, such as the CLI and web console.
  3. provide good integration with JBoss security domains.

Upvotes: 1

Related Questions