Search code examples
javabuildwebspherejavacompiler

How can I patch/copy java classes to local WebSphere server?


I am using WebSphere 8.5 for an Java/J2EE application development. Every time when I update java classes, I need to go through the process of building the EAR project, then updating the EAR filing through WebSphere console to deploy the changes. Is there an simple and quick process to patch/copy the java classes to WebSphere?

I have done it when I was developing application in Tomcat, I will just set build automatically in my IDE(eclipse) and it does the work.


Solution

  • You can deploy individual class files if you want to. Either officially, through the web console, or unofficially on the filesystem.

    See what's the difference between folders 'installedApps' and 'applications' in websphere application server?

    But I don't think this is what you're really seeking.

    I don't know of any way to automatically update classes from an IDE to a remote WebSphere instance. I've only done so to a local WebSphere instance I run from within Rational Application Developer (IBM's branded Eclipse).