All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.main.java.org.kawanfw.sql.tomcat.TomcatStarterUtilInstancesTester Maven / Gradle / Ivy

Go to download

AceQL HTTP is a framework of REST like http APIs that allow to access to remote SQL databases over http from any device that supports http. AceQL HTTP is provided with three client SDK: - The AceQL C# Client SDK allows to wrap the HTTP APIs using Microsoft SQL Server like calls in their code, just like they would for a local database. - The AceQL Java Client JDBC Driver allows to wrap the HTTP APIs using JDBC calls in their code, just like they would for a local database. - The AceQL Python Client SDK allows SQL calls to be encoded with standard unmodified DB-API 2.0 syntax

There is a newer version: 12.2
Show newest version
package org.kawanfw.sql.tomcat;

import java.lang.reflect.Constructor;
import java.util.Properties;
import java.util.Set;

import org.kawanfw.sql.servlet.ServerSqlManager;
import org.kawanfw.sql.util.SqlTag;

public class TomcatStarterUtilInstancesTester {

    public static void testConfigurators(Properties properties) {

        if (properties == null) {
            throw new IllegalArgumentException("properties is null");
        }

        System.out.println(
        	SqlTag.SQL_PRODUCT_START + " Testing Declared Configurators:");

        Set databases = TomcatStarterUtil.getDatabaseNames(properties);
        for (String database : databases) {
            // Database configurator
            String databaseConfiguratorClassName = properties.getProperty(
        	    database + "." + ServerSqlManager.DATABASE_CONFIGURATOR_CLASS_NAME);

            if (databaseConfiguratorClassName != null) {
        	loadInstance(databaseConfiguratorClassName);

        	System.out.println(SqlTag.SQL_PRODUCT_START + "  -> " + database
        		+ " Database Configurator " + TomcatStarterUtil.CR_LF
        		+ SqlTag.SQL_PRODUCT_START + "     "
        		+ databaseConfiguratorClassName + " OK.");
            }
        }

        String className = properties.getProperty(
        	ServerSqlManager.BLOB_DOWNLOAD_CONFIGURATOR_CLASS_NAME);

        if (className != null) {
            loadInstance(className);

            System.out.println(SqlTag.SQL_PRODUCT_START + "  -> Configurator "
        	    + className + " OK.");
        }

        className = properties.getProperty(
        	ServerSqlManager.BLOB_UPLOAD_CONFIGURATOR_CLASS_NAME);

        if (className != null) {
            loadInstance(className);

            System.out.println(SqlTag.SQL_PRODUCT_START + "  -> Configurator "
        	    + className + " OK.");
        }

        className = properties
        	.getProperty(ServerSqlManager.SESSION_CONFIGURATOR_CLASS_NAME);

        if (className != null) {
            loadInstance(className);

            System.out.println(SqlTag.SQL_PRODUCT_START + "  -> Configurator "
        	    + className + " OK.");
        }

    }

    static void loadInstance(String configuratorClassName) {
        Class c = null;

        try {
            c = Class.forName(configuratorClassName);

            // @SuppressWarnings("unused")
            // Object theObject = c.newInstance();
            Constructor constructor = c.getConstructor();
            @SuppressWarnings("unused")
            Object theObject = constructor.newInstance();

        } catch (Exception e) {
            throw new IllegalArgumentException(
        	    "Exception when loading Configurator "
        		    + configuratorClassName + ": " + e.toString() + ". "
        		    + SqlTag.PLEASE_CORRECT,
        	    e);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy