vancetang / reflections

Automatically exported from code.google.com/p/reflections
Do What The F*ck You Want To Public License
0 stars 0 forks source link

Empty result for weblogic10 #71

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Deploy any ear with war on weblogic10
2. Code is:
...
packagePrefix = "some.package";
reflections = new Reflections(new ConfigurationBuilder()
          .filterInputsBy(new FilterBuilder.Include(FilterBuilder.prefix(packagePrefix)))
          .setUrls(ClasspathHelper.getUrlsForPackagePrefix(packagePrefix))
          .setScanners(new TypeAnnotationsScanner()));
...
Set<Class<?>> classes = reflections.getTypesAnnotatedWith(annotation);

What is the expected output? What do you see instead?
Expected set of annotated classes. Result set is empty.

Should it work on Weblogic10?

What version of the product are you using? On what operating system?
Reflections 0.9.5-RC2 under Windows.

Original issue reported on code.google.com by taleras...@gmail.com on 16 Mar 2011 at 3:12

GoogleCodeExporter commented 9 years ago
fixed on trunk

Original comment by ronm...@gmail.com on 12 May 2011 at 7:49