Overview of WebLogic Server Subsystem MBeans 3-7
Figure 3–2 JMS Server and JMS System Resource MBeans
3.3 JDBC Resource Configuration
When you create a JDBC resource data source or multi-data source using the Administration Console or using the WebLogic Scripting Tool WLST, WebLogic
Server creates a JDBC module in the configjdbc subdirectory of the domain directory, and adds a reference to the module in the domains configuration file
config.xml.
Table 3–3 introduces the MBeans and
Figure 3–3 illustrates where the MBeans are
located in the configuration MBean hierarchy.
3-8 Developing Custom Management Utilities With JMX for Oracle WebLogic Server
Table 3–3 MBeans for JDBC Resources
This MBean... Configures...
JDBCSystemResourceMBean A container for the JavaBeans created from a data source
module. However, all JMX access for a JDBC data source is through the JDBCSystemResourceMBean. You cannot
directly access the individual JavaBeans created from the data source module.
See JDBCSystemResourceMBean in the Oracle WebLogic Server MBean Reference.
JDBCDataSourceBean The top of the JDBC data source bean tree. JDBC data
sources all have a JDBCDataSourceBean as their root bean a bean with no parent.
See JDBCDataSourceBean in the Oracle WebLogic Server MBean Reference.
JDBCDriverParamsBean Contains the driver parameters of a data source.
Configuration parameters for the JDBC Driver used by a data source are specified using a driver parameters bean.
See JDBCDriverParamsBean in the Oracle WebLogic Server MBean Reference.
JDBCConnectionPoolParamsBean Contains the connection pool parameters of a data source.
Configuration parameters for a data sources connection pool are specified using the connection pool parameters
bean.
See JDBCConnectionPoolBean in the Oracle WebLogic Server MBean Reference.
JDBCDataSourceParamsBean Contains the basic usage parameters of a data source.
Configuration parameters for the basic usage of a data source are specified using a data source parameters bean.
See JDBCDataSourceParamsBean in the Oracle WebLogic Server MBean Reference.
JDBCXAParamsBean Contains the XA-related parameters of a data source.
Configuration parameters for a data sources XA-related behavior are specified using a XA parameters bean.
See JDBCXAParamsBean in the Oracle WebLogic Server MBean Reference.
Overview of WebLogic Server Subsystem MBeans 3-9
Figure 3–3 JDBC Resource MBeans
3-10 Developing Custom Management Utilities With JMX for Oracle WebLogic Server
4
Accessing WebLogic Server MBeans with JMX 4-1
4
Accessing WebLogic Server MBeans with JMX
The following sections describe how to access WebLogic Server MBeans from a JMX client:
■
Section 4.1, Set Up the Classpath for Remote Clients