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

com.github.bingoohuang.sqltrigger.Envs Maven / Gradle / Ivy

The newest version!
package com.github.bingoohuang.sqltrigger;

public class Envs {
    public static final boolean HAS_SPRING = classExists("org.springframework.context.ApplicationContext");

    public static boolean classExists(String className) {
        try {
            Class.forName(className, false, Envs.class.getClassLoader());
            return true;
        } catch (ClassNotFoundException e) {
            return false;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy