• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error while deploying

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am getting the following error when I was deployed singe java file which has changes using jboss plugin in eclips.


12:57:30,864 ERROR [URLDeploymentScanner] Incomplete Deployment listing:

--- Packages waiting for a deployer ---
org.jboss.deployment.DeploymentInfo@44c3878f { url=file:/C:/jboss/jboss/server/default/deploy/TestBean.java }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss/jboss/server/default/deploy/TestBean.java
altDD: null
lastDeployed: 1304494050864
lastModified: 1304494050864
mbeans:

--- Incompletely deployed packages ---
org.jboss.deployment.DeploymentInfo@44c3878f { url=file:/C:/jboss/jboss/server/default/deploy/TestBean.java}
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss/jboss/server/default/deploy/TestBean.java
altDD: null
lastDeployed: 1304494050864
lastModified: 1304494050864
mbeans:


Please guide me how to get ride of this error.


Thanks in advance.

 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can't deploy just the .java file. It has to be deployed within a .jar and the .jar should contain some Java EE components, for it to be deployed and be useful as an application.
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you read the JBoss Tools documentation? It contains many helpful tutorials. Same for the Eclipse help text (for the Web Tools Platform), though those tutorials target Tomcat they should still be usable for JBoss AS.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic