Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to make a Java EE application to replace its EAR and restart without accessing server console? It is running in IBM Websphere 6.

2012-02-08: Added

I'm not able to run scripts on server because it is a shared host. The only thing I can do is to rebuild the application and ask permission to publish. It's a long and burocratic process. So I would like to make it self deployable.

share|improve this question

3 Answers

You can use wsadmin scripting facilities to do this. Integrate that with your build tools like Ant or Maven etc.

share|improve this answer

Netbeans IDE has a feature "Deploy on save" for a java ee application. However I am not sure if you can register a Websphere server in order for your application to be deplyed automatically. Another option, since i am working with Glassfish server, is to copy the ear file to the autodeploy folder and the application is being redeployed. I dont know if websphere has a similar feature. I hope i gave you some options. :)

share|improve this answer

Use Continous Integration Server like Jenkins/Hudson, it will build and deploy your code without manual intervention, once you configure it. you can use ant or maven as your build tools.

You can use Continous integration with any web-server or application server.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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