Uploaded image for project: 'Application Server 7'
  1. Application Server 7
  2. AS7-1551

NullPointerException thrown by BusinessViewAnnotationProcessor when deploying a Grails application

    XMLWordPrintable

Details

    • Bug
    • Resolution: Duplicate
    • Major
    • None
    • 7.0.0.Final
    • None
    • Hide
      1. Install Grails 1.3.7
      2. Generate a sample application via grails create-app
      3. Add the following to the last line of the sample app's BuildConfig.groovy
        grails.war.resources = { stagingDir ->
            delete(dir:"${stagingDir}/WEB-INF/lib/", includes:"jta-*.jar,xpp3*.jar")
        }
        
      4. Generate a development WAR by running grails dev war
      5. Run JBoss AS7 in standalone mode.
      6. Deploy the war by copying it to the standalone/deployments folder.
      Show
      Install Grails 1.3.7 Generate a sample application via grails create-app Add the following to the last line of the sample app's BuildConfig.groovy grails.war.resources = { stagingDir -> delete(dir: "${stagingDir}/WEB-INF/lib/" , includes: "jta-*.jar,xpp3*.jar" ) } Generate a development WAR by running grails dev war Run JBoss AS7 in standalone mode. Deploy the war by copying it to the standalone/deployments folder.

    Description

      I have a Grails 1.3.7 application running fine on JBoss AS 5.1.0 and JBoss AS 6. However, when I attempted to deploy the same application on AS7 in standalone mode, I got the following error:

      23:46:46,560 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) Starting deployment of "example.war"
      23:46:50,740 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service thread 1-2) Encountered invalid class name "org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer" for service type "org.xmlpull.v1.XmlPullParserFactory"
      23:46:50,814 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC00001: Failed to start service jboss.deployment.unit."example.war".POST_MODULE: org.jboss.msc.service.StartException in service jboss.deployment.unit."example.war".POST_MODULE: Failed to process phase POST_MODULE of deployment "example.war"
      	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:121)
      	at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1765)
      	at org.jboss.msc.service.ServiceControllerImpl$ClearTCCLTask.run(ServiceControllerImpl.java:2291)
      	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [:1.6.0_26]
      	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [:1.6.0_26]
      	at java.lang.Thread.run(Thread.java:680) [:1.6.0_26]
      Caused by: java.lang.NullPointerException
      	at org.jboss.as.ejb3.deployment.processors.BusinessViewAnnotationProcessor.deploy(BusinessViewAnnotationProcessor.java:72)
      	at org.jboss.as.server.deployment.example.warDeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:115)
      	... 5 more
      
      23:46:50,818 INFO  [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployment of "example.war" was rolled back with failure message {"Failed services" => {"jboss.deployment.unit.\"example.war\".POST_MODULE" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"example.war\".POST_MODULE: Failed to process phase POST_MODULE of deployment \"example.war\""}}
      23:46:50,819 INFO  [org.jboss.as.controller] (DeploymentScanner-threads - 2) Service status report
        Services which failed to start:
            service jboss.deployment.unit."example.war".POST_MODULE: org.jboss.msc.service.StartException in service jboss.deployment.unit."example.war".POST_MODULE: Failed to process phase POST_MODULE of deployment "example.war"
      
      23:46:50,827 ERROR [org.jboss.as.deployment] (DeploymentScanner-threads - 1) {"Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"Failed services" => {"jboss.deployment.unit.\"example.war\".POST_MODULE" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"example.war\".POST_MODULE: Failed to process phase POST_MODULE of deployment \"example.war\""}}}}
      23:46:51,015 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) Stopped deployment example.war in 193ms
      

      Seeing that the deployer was complaining about not being able to see org.xmlpull.mxp1.MXParser and org.xmlpull.mxp1_serializer.MXSerializer, I excluded the xpp3 jar included in the WAR and performed another deployment. Here is the resulting log:

      23:50:51,009 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) Starting deployment of "example.war"
      23:50:54,506 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-2) MSC00001: Failed to start service jboss.deployment.unit."example.war".POST_MODULE: org.jboss.msc.service.StartException in service jboss.deployment.unit."example.war".POST_MODULE: Failed to process phase POST_MODULE of deployment "example.war"
      	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:121)
      	at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1765)
      	at org.jboss.msc.service.ServiceControllerImpl$ClearTCCLTask.run(ServiceControllerImpl.java:2291)
      	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [:1.6.0_26]
      	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [:1.6.0_26]
      	at java.lang.Thread.run(Thread.java:680) [:1.6.0_26]
      Caused by: java.lang.NullPointerException
      	at org.jboss.as.ejb3.deployment.processors.BusinessViewAnnotationProcessor.deploy(BusinessViewAnnotationProcessor.java:72)
      	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:115)
      	... 5 more
      
      23:50:54,508 INFO  [org.jboss.as.server.controller] (DeploymentScanner-threads - 1) Deployment of "example.war" was rolled back with failure message {"Failed services" => {"jboss.deployment.unit.\"example.war\".POST_MODULE" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"example.war\".POST_MODULE: Failed to process phase POST_MODULE of deployment \"example.war\""}}
      23:50:54,658 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) Stopped deployment example.war in 150ms
      23:50:54,660 ERROR [org.jboss.as.deployment] (DeploymentScanner-threads - 2) {"Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"Failed services" => {"jboss.deployment.unit.\"example.war\".POST_MODULE" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"example.war\".POST_MODULE: Failed to process phase POST_MODULE of deployment \"example.war\""}}}}
      

      As seen from the two error logs, a NullPointerException is being thrown by BusinessViewAnnotationProcessor at the same line number (72).

      I have tried excluding other jars, to no avail. I even tried deleting all the jars inside WEB-INF/lib in the hope of getting a different error (and to get a clue as to what's going on), but I still get the same result.

      Attachments

        Issue Links

          Activity

            People

              jaikiran Jaikiran Pai (Inactive)
              jpalcala_jira John Paul Alcala (Inactive)
              Votes:
              1 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: