com.nepxion.matrix.proxy.constant.ProxyConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matrix-aop Show documentation
Show all versions of matrix-aop Show documentation
Nepxion Matrix is an AOP framework integrated with Spring AutoProxy, Spring Registrar and Spring Import Selector
package com.nepxion.matrix.proxy.constant;
/**
* Title: Nepxion Matrix
* Description: Nepxion Matrix AOP
* Copyright: Copyright (c) 2017-2050
* Company: Nepxion
* @author Haojun Ren
* @version 1.0
*/
public class ProxyConstant {
public static final String CGLIB = "Cglib";
// JDK Proxy 类型
public static final String PROXY_TYPE_REFLECTIVE = "Reflective Aop Proxy";
// CGLIB Proxy 类型
public static final String PROXY_TYPE_CGLIB = "Cglib Aop Proxy";
// JDK Proxy 名称关键字
public static final String JDK_PROXY_NAME_KEY = "com.sun.proxy";
// CGLIB Proxy 名称关键字
public static final String CGLIB_PROXY_NAME_KEY = "ByCGLIB";
public static final String SEPARATOR = ";";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy