Play framework. no need to compile

前端 未结 3 2005
野性不改
野性不改 2021-02-09 16:07

I was introduced to the Play framework, and one of the amazing things I found about it is that there is no need to compile the project. You only need to save the edited files an

3条回答
  •  轮回少年
    2021-02-09 16:30

    If you are talking about Play framework 1.x, it has an application class manager, which automatically load the java source file and compile it into byte code (using Eclipse Java Compiler), in additional it will enhance the compiled code using Javassist. Check the codes in https://github.com/playframework/play/tree/master/framework/src/play/classloading.

提交回复
热议问题