I and others are having trouble running scala on AS 6.

The problem is a IllegalArgumentException that prevents deployment (stack trace below).

I am trying to run the project generated by the sacalate maven archetype (scalate-archetype-empty) and other projects of mine, all with the same problem.

Is there a known workaround for this?

08:41:21,200 ERROR [AbstractKernelController] Error installing to PostClassLoader: name=vfs:///home/jfaerman/dev/jboss-6.0.0.Final/server/default/deploy/scalearn.war state=ClassLoader mode=Manual requiredState=PostClassLoader: org.jboss.deployers.spi.DeploymentException: Error during deploy: vfs:///home/jfaerman/dev/jboss-6.0.0.Final/server/default/deploy/scalearn.war

    at org.jboss.deployers.spi.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:49) [:2.2.0.GA]

   (ommited long trace)

Caused by: java.lang.Error: Error visiting "/home/jfaerman/dev/jboss-6.0.0.Final/server/default/deploy/scalearn.war/WEB-INF/lib/scala-compiler-2.8.0.jar/scala/tools/nsc/typechecker/NamesDefaults$$anonfun$9.class"

    at org.jboss.classloading.plugins.vfs.VFSResourceVisitor.visit(VFSResourceVisitor.java:268) [jboss-classloading-vfs.jar:2.2.0.GA

    ... 43 more

Caused by: java.lang.RuntimeException: Error visiting resource: VFSResourceContext @ scala/tools/nsc/typechecker/NamesDefaults$$anonfun$9.class / BaseClassLoader@10b4adb7{vfs:///home/jfaerman/dev/jboss-6.0.0.Final/server/default/deploy/scalearn.war}, visitor: org.jboss.scanning.annotations.plugins.GenericAnnotationVisitor@3f4ddd67

    at org.jboss.scanning.plugins.visitor.IgnoreSetErrorHandler.handleError(IgnoreSetErrorHandler.java:56) [:1.0.0.GA]

Caused by: java.lang.IllegalArgumentException: Null type

    at org.jboss.reflect.plugins.introspection.IntrospectionTypeInfoFactoryImpl.getTypeInfo(IntrospectionTypeInfoFactoryImpl.java:354) [jboss-reflect.jar:2.2.0.GA]
link|improve this question

74% accept rate
Scala and Java versions? – pedrofurla Jun 16 '11 at 13:47
1  
Java is Sun JDK 1.6. Scala i have tried both 2.9.0-1 and 2.8.1, both resulted in the same exception, only differing by the scanned class. – Julio Faerman Jun 16 '11 at 20:21
Just noticed: scala-compiler-2.8.0.jar. Do you need the compiler to be deployed with your application? Well, at least it's maybe something for you to try... – pedrofurla Jun 16 '11 at 21:27
I also got this error, without the compiler JAR, on scala/Function$$anonfun$untupled$2.class in the 2.8.1 library. – Matt R Jun 28 '11 at 20:36
feedback

1 Answer

up vote 1 down vote accepted

This worked for me: in deployers/scanning-deployers-jboss-beans.xml, within the ResourceErrorHandler bean add a new <install> block as follows:

 <install method="addIgnored">
     <parameter>java.lang.NoClassDefFoundError</parameter>
 </install>

Googling also suggested that another workaround was to add an appropriate jboss-scanning.xml file, but I couldn't get this to work for my EAR:

http://www.mastertheboss.com/jboss-application-server/313-restful-cache-with-infinispan.html

link|improve this answer
I had the same problem here, and editing scanning-deployers-jboss-beans.xml didn't do the trick for me (actually, my server/default/deployers/scanning-deployers-jboss-beans.xml in JBoss 6.1.0 already had that <install> to ignore NoClassDefFoundError). However, it worked after adding a WEB-INF/jboss-scanning.xml as mentioned on the page linked in the response. – avernet Oct 19 '11 at 18:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.