Intellij idea plugin development - hot reload?

生来就可爱ヽ(ⅴ<●) 提交于 2021-02-05 04:47:27

问题


I'm creating some plugin to intellij idea. Each time I'm changing code I need to re run app.

Is there something like hot reload or similar thing? Or more efficient way?


回答1:


I believe you are looking for the Run -> Reload Changed Classes

It usually works well with small changes.




回答2:


New versions of IntelliJ products support "Dynamic Plugins", which means restarting the development instance unnecessary. From https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/dynamic_plugins.html :

Starting with 2020.1 release, the ability to install, update and uninstall plugins without restarting the IDE is available in the IntelliJ Platform. During plugin development, this also allows avoiding restarts of the IDE Development Instance after every code change.

You might also want to look at LivePlugin - plugin that allows you to quickly run & develop plugins within the IDE without starting up a development instance or requiring any restarts: https://plugins.jetbrains.com/plugin/7282-liveplugin



来源:https://stackoverflow.com/questions/47191341/intellij-idea-plugin-development-hot-reload

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!