⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jndiconnectionprovider.java

📁 定时器开源项目, 相对于 jcrontab, Quartz 算是更完整的一个项目, 随著开发的版本上来, 他已经脱离只是写在程序里面的计时器, 在指定的时间或区间, 处理所指定的事件. 也加入了 se
💻 JAVA
字号:
/* * Copyright James House (c) 2001-2004 *  * All rights reserved. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: 1. * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. 2. Redistributions in * binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other * materials provided with the distribution. *  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *  *  * This product includes software developed by the Apache Software Foundation * (http://www.apache.org/) */package org.quartz.utils;import java.sql.Connection;import java.sql.SQLException;import java.util.Properties;import javax.naming.Context;import javax.naming.InitialContext;import javax.sql.DataSource;import javax.sql.XADataSource;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;/** * <p> * A <code>ConnectionProvider</code> that provides connections from a <code>DataSource</code> * that is managed by an application server, and made available via JNDI. * </p> *  * @see DBConnectionManager * @see ConnectionProvider * @see PoolingConnectionProvider *  * @author James House * @author Sharada Jambula * @author Mohammad Rezaei * @author Patrick Lightbody * @author Srinivas Venkatarangaiah */public class JNDIConnectionProvider implements ConnectionProvider {    /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Data members.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    private String url;    private Properties props;    private Object datasource;    private boolean alwaysLookup = false;    /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Constructors.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    /**     * Constructor     *      * @param jndiUrl     *          The url for the datasource     */    public JNDIConnectionProvider(String jndiUrl, boolean alwaysLookup) {        this.url = jndiUrl;        this.alwaysLookup = alwaysLookup;        init();    }    /**     * Constructor     *      * @param jndiUrl     *          The URL for the DataSource     * @param jndiProps     *          The JNDI properties to use when establishing the InitialContext     *          for the lookup of the given URL.     */    public JNDIConnectionProvider(String jndiUrl, Properties jndiProps,            boolean alwaysLookup) {        this.url = jndiUrl;        this.props = jndiProps;        this.alwaysLookup = alwaysLookup;        init();    }    /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Interface.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    Log getLog() {        return LogFactory.getLog(getClass());    }    private void init() {        if (!isAlwaysLookup()) {            try {                Context ctx = null;                if (props != null) ctx = new InitialContext(props);                else                    ctx = new InitialContext();                datasource = (DataSource) ctx.lookup(url);            } catch (Exception e) {                getLog().error(                        "Error looking up datasource: " + e.getMessage(), e);            }        }    }    public Connection getConnection() throws SQLException {        try {            Object ds = this.datasource;            if (ds == null || isAlwaysLookup()) {                Context ctx = null;                if (props != null) ctx = new InitialContext(props);                else                    ctx = new InitialContext();                ds = ctx.lookup(url);                if (!isAlwaysLookup()) this.datasource = ds;            }            if (ds == null)                    throw new SQLException(                            "There is no object at the JNDI URL '" + url + "'");            if (ds instanceof XADataSource) return (((XADataSource) ds)                    .getXAConnection().getConnection());            else if (ds instanceof DataSource) return ((DataSource) ds)                    .getConnection();            else                throw new SQLException("Object at JNDI URL '" + url                        + "' is not a DataSource.");        } catch (Exception e) {            this.datasource = null;            throw new SQLException(                    "Could not retrieve datasource via JNDI url '" + url + "' "                            + e.getClass().getName() + ": " + e.getMessage());        }    }    public boolean isAlwaysLookup() {        return alwaysLookup;    }    public void setAlwaysLookup(boolean b) {        alwaysLookup = b;    }    /*      * @see org.quartz.utils.ConnectionProvider#shutdown()     */    public void shutdown() throws SQLException {        // do nothing    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -