全部博文(2065)
分类: Java
2010-07-05 23:15:39
去网上baidu,google了很多,也没有什么办法。自己试了试几个版本终于搞定了。
方法是:
用resin3.0.22的版本(resin3.0.8+jdk1.4好像不行),jdk用1.5版。并用httpd -Xdebug启动resin服务器。
这样启动的时候就不会报:In Place class reloading during development requires a compatible JDK and -Xdebug.错误了,然后eclipse保存一下java文件,然后resin就可以动态加载刚生成的class文件了,很爽啊,呵呵。
resin3.08 +jdk1.4也不会报In Place class reloading during development requires a compatible JDK and -Xdebug的错,但是resin还是自动重启webapp来达到加载新的class的目的。好像resin3.0.21以上版本才支持。
总结一下:要想让resin能够动态加载class,要三个条件,1.高版本的resin 2.与之相匹配的jdk 3.以-Xdebug方式启动