BAEL-2779 Guide to classgraph library

This commit is contained in:
Denis Zhdanov
2019-03-31 08:15:02 +08:00
parent 5754bb3310
commit af4e221fa8
9 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.baeldung.classgraph;
public class MethodWithAnnotationParameterWeb {
@TestAnnotation("web")
public void service() {
}
}