When Eclipse builds my workspace, I assume that it creates Java .class files. What else should otherwise deploy to my running JBoss AS?
Do you know where I can find these class files that Eclipse temporarily creates?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Right click on your project, and then click on properties. Now click on the Java Build Path section, and you will be able to see and set the Default output folder on the “Source” tab. I believe Eclipse defaults to “bin”
More than likely though, it won’t be enough to just copy these over to JBoss. You’ll need to deploy your application as a .war file, which is basically a .zip with a different extension. Do some googling on “ant war task” for some examples and articles.