File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/main/java/org/apache/ibatis/io Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 29
29
* ResolverUtil is used to locate classes that are available in the/a class path and meet arbitrary conditions. The two
30
30
* most common conditions are that a class implements/extends another class, or that is it annotated with a specific
31
31
* annotation. However, through the use of the {@link Test} class it is possible to search using arbitrary conditions.
32
- * </p>
33
32
* <p>
34
33
* A ClassLoader is used to locate all locations (directories and jar files) in the class path that contain classes
35
34
* within certain packages, and then to load those classes and check them. By default the ClassLoader returned by
36
35
* {@code Thread.currentThread().getContextClassLoader()} is used, but this can be overridden by calling
37
36
* {@link #setClassLoader(ClassLoader)} prior to invoking any of the {@code find()} methods.
38
- * </p>
39
37
* <p>
40
38
* General searches are initiated by calling the {@link #find(Test, String)} and supplying a package name and a Test
41
39
* instance. This will cause the named package <b>and all sub-packages</b> to be scanned for classes that meet the test.
42
40
* There are also utility methods for the common use cases of scanning multiple packages for extensions of particular
43
41
* classes, or classes annotated with a specific annotation.
44
- * </p>
45
42
* <p>
46
43
* The standard usage pattern for the ResolverUtil class is as follows:
47
- * </p>
48
44
*
49
45
* <pre>
50
46
* ResolverUtil<ActionBean> resolver = new ResolverUtil<ActionBean>();
You can’t perform that action at this time.
0 commit comments