The web project must be recompiled and deployed every time, which greatly affects efficiency.
迷茫2017-05-17 10:03:44
Idea’s built-in hot deployment is unreliable and will fail when there are many changed classes. It is recommended to use jRebel
淡淡烟草味2017-05-17 10:03:44
When developing and debugging, to see the effect of new code, I usually use update classes and resources. If it is not enough (the level of changes is large, such as adding methods to a class), it will prompt hot swap not implemented. In this case, use restart. server is enough.
These two functions are incremental compilation by default. If you want to completely recompile, you need to click on the rebuild project.
我想大声告诉你2017-05-17 10:03:44
Supports hot deployment, http://wiki.jikexueyuan.com/p... You can check this out