Package com.alibaba.nacos.sys.filter
Interface NacosPackageExcludeFilter
public interface NacosPackageExcludeFilter
Nacos server module execute filter.
- Author:
- xiweng.yy
-
Method Summary
Modifier and TypeMethodDescriptionGet the responsible module package prefix of filter.booleanisExcluded(String className, Set<String> annotationNames) According the class name and annotations to judge whether the class should be excluded by spring bean.
-
Method Details
-
getResponsiblePackagePrefix
String getResponsiblePackagePrefix()Get the responsible module package prefix of filter.- Returns:
- package prefix
-
isExcluded
According the class name and annotations to judge whether the class should be excluded by spring bean.- Parameters:
className- name of this classannotationNames- annotations of this class- Returns:
trueif should be excluded, otherwisefalse
-