Examples of SnapshotDBHelper


Examples of org.apache.geronimo.monitoring.snapshot.SnapshotDBHelper

            activeDS = (DataSource)ic.lookup("jca:/org.apache.geronimo.plugins.monitoring/agent-ds/JCAManagedConnectionFactory/jdbc/ActiveDS");
            archiveDS = (DataSource)ic.lookup("jca:/org.apache.geronimo.plugins.monitoring/agent-ds/JCAManagedConnectionFactory/jdbc/ArchiveDS");
        } catch(Exception e) {
            log.error(e.getMessage());
        }
        snapshotDBHelper = new SnapshotDBHelper(activeDS, archiveDS);
    }
View Full Code Here

Examples of org.apache.geronimo.monitoring.snapshot.SnapshotDBHelper

    @PostConstruct
    private void init() {
        // set up SnaphotDBHelper with the necessary data sources
        // Note: do not put this in the constructor...datasources are not injected by then
        snapshotDBHelper = new SnapshotDBHelper(activeDS, archiveDS);
    }
View Full Code Here

Examples of org.apache.geronimo.monitoring.snapshot.SnapshotDBHelper

            log.error(e.getMessage());
            e.printStackTrace();
        } finally {
            Thread.currentThread().setContextClassLoader(oldCl);
        }
        snapshotDBHelper = new SnapshotDBHelper(activeDS, archiveDS);
    }
View Full Code Here

Examples of org.apache.geronimo.monitoring.snapshot.SnapshotDBHelper

    @PostConstruct
    private void init() {
        // set up SnaphotDBHelper with the necessary data sources
        // Note: do not put this in the constructor...datasources are not injected by then
        snapshotDBHelper = new SnapshotDBHelper(activeDS, archiveDS);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.