You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using PackageScanner.scanPackage("com.restservice");
deploying in wildfly I got the error:
Caused by: java.lang.IllegalArgumentException: URI scheme is not "file"
at java.io.File.(File.java:421)
at org.wicketstuff.rest.utils.mounting.PackageScanner.getClasses(PackageScanner.java:159)
at org.wicketstuff.rest.utils.mounting.PackageScanner.scanPackage(PackageScanner.java:71)
... 94 more
Using PackageScanner.scanPackage("com.restservice");
deploying in wildfly I got the error:
PackageScanner.java:159
dirs.add(new File(resource.toURI()));
"com.restservice" in wildfly is resolving to "vfs:/C:/Alocpro/wildfly-servlet-9.0.2.Final/standalone/deployments/**"
Probably should be:
new File(resource.getFile())
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-restannotations</artifactId>
<version>8.8.0</version>
</dependency>
The text was updated successfully, but these errors were encountered: