Package xgenerator.dao

Examples of xgenerator.dao.DataSourceConfigDao


  /**
   * for test
   * @param args
   */
  public static void main(String[] args) {
    DataSourceConfigDao datasourceDao = new DataSourceConfigDaoXmlImpl();
   
    Properties properties = datasourceDao.findByName("EAP_DS");
    System.out.println(properties.getProperty("name"));
    System.out.println(properties.getProperty("jdbc.driverClassName"));
    System.out.println(properties.getProperty("jdbc.url"));
    System.out.println(properties.getProperty("jdbc.username"));
    System.out.println(properties.getProperty("jdbc.password"));
View Full Code Here

TOP

Related Classes of xgenerator.dao.DataSourceConfigDao

Copyright © 2018 www.massapicom. 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.