Package xgenerator.dao

Examples of xgenerator.dao.DataSourceConfigDao.findByName()


   * @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
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.