Java工具:HotswapaAent无法重新加载类定义

时间:2012-02-17 20:36:15

标签: java class playframework hotswap

我正在尝试为静态java类型模板引擎实现hotswap机制。我遵循Play!Framework使用的相同方法来重新加载应用程序类。但是我总是得到以下错误:

Caused by: java.lang.UnsupportedOperationException: class redefinition failed: attempted to change the schema (add/remove fields)
        at sun.instrument.InstrumentationImpl.redefineClasses0(Native Method)
        at sun.instrument.InstrumentationImpl.redefineClasses(InstrumentationImpl.java:150)
        at play.classloading.HotswapAgent.reload(HotswapAgent.java:21)
        at com.greenlaw110.rythm.play.RythmPlugin$5.reload(RythmPlugin.java:226)
        at com.greenlaw110.rythm.internal.compiler.TemplateClassLoader.detectChange(TemplateClassLoader.java:335)
        ... 19 more

任何人都知道游戏如何在这个问题上存活下来?

1 个答案:

答案 0 :(得分:1)

我想我有点理解发生了什么。 Play的应用程序类加载器实际上无法承受这种错误。它的作用是在错误时重新启动Play,其中进程play将创建应用程序类加载器的新实例。我遵循了同样的过程,它证明是有效的。