从Weblogic的连接池/数据源获取连接的方式

前端之家收集整理的这篇文章主要介绍了从Weblogic的连接池/数据源获取连接的方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//JDBC方式:,可以使用这个方式进行一下连接测试
    public static Connection getConnection(){  
        Connection conn = null; 
        //不同的数据库,连接字符串会有所不同。 
        String url = "jdbc:postgresql://127.0.0.1/getseus";  
        String userName = "ra";  
        String pwd = "ra";  
        try {  
            Class.forName("org.postgresql.Driver").newInstance();  
            conn = DriverManager.getConnection(url,userName,pwd);  
        } catch (Exception e){  
            e.printStackTrace();  
        }  
          
        return conn;  
    }  
//JNDI数据源方式      
    public static Connection getConnectionFromDS(){  
        Connection conn = null;  
        Context ctx = null;  
        try {  
            ctx = new InitialContext();  
            DataSource ds = (DataSource)ctx.lookup("JNDIPG");  
            conn = ds.getConnection();  
        } catch (Exception e) {  
            e.printStackTrace();  
        }            
        return conn;  
          
    }  
原文链接:https://www.f2er.com/postgresql/197168.html

猜你在找的Postgre SQL相关文章