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

com.litongjava.tio.boot.utils.ClassCheckUtils Maven / Gradle / Ivy

There is a newer version: 1.8.6
Show newest version
package com.litongjava.tio.boot.utils;

public class ClassCheckUtils {

  /**
   * "com.litongjava.jfinal.aop.annotation.AComponentScan"
   * @param className
   * @return
   */
  public static boolean check(String className) {
    try {
      // 尝试加载类
      Class.forName(className);
      return true;
    } catch (ClassNotFoundException e) {
      return false;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy