'Hot Deploy Does Not Work For Java Class File Edits On Weblogic 12c

I'm using Intellij Community edition I don't have the luxurary of using the Ultimate edition; Hence, I can't install the weblogic plugin. When I make edits to any class file it will not hot deploy to the server. Is there a way to configure weblogic so that hot deploys are picked up.



Solution 1:[1]

WLS has FastSwap, which is a hot redeploy feature, although has some limitations, and probably not as good as the mentioned plug-in.

TL;DR: To enable FastSwap in your application, add the following element to the weblogic-application.xml file.

 <fast-swap>
    <enabled>true</enabled>
 </fast-swap>

more details at:

https://docs.oracle.com/middleware/1212/wls/DEPGD/deployunits.htm#DEPGD153

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 devwebcl