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 2929 * ResolverUtil is used to locate classes that are available in the/a class path and meet arbitrary conditions. The two
3030 * most common conditions are that a class implements/extends another class, or that is it annotated with a specific
3131 * annotation. However, through the use of the {@link Test} class it is possible to search using arbitrary conditions.
32- * </p>
3332 * <p>
3433 * A ClassLoader is used to locate all locations (directories and jar files) in the class path that contain classes
3534 * within certain packages, and then to load those classes and check them. By default the ClassLoader returned by
3635 * {@code Thread.currentThread().getContextClassLoader()} is used, but this can be overridden by calling
3736 * {@link #setClassLoader(ClassLoader)} prior to invoking any of the {@code find()} methods.
38- * </p>
3937 * <p>
4038 * General searches are initiated by calling the {@link #find(Test, String)} and supplying a package name and a Test
4139 * instance. This will cause the named package <b>and all sub-packages</b> to be scanned for classes that meet the test.
4240 * There are also utility methods for the common use cases of scanning multiple packages for extensions of particular
4341 * classes, or classes annotated with a specific annotation.
44- * </p>
4542 * <p>
4643 * The standard usage pattern for the ResolverUtil class is as follows:
47- * </p>
4844 *
4945 * <pre>
5046 * ResolverUtil<ActionBean> resolver = new ResolverUtil<ActionBean>();
You can’t perform that action at this time.
0 commit comments