Resin更新class文件后会自动重启webapp的问题

 用resin做服务器,每次更新class文件后,resin就会自动重启webapp来加载新的类,速度就很慢,而且session也会丢失,很不爽。

去网上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方式启动

你可能感兴趣的:(技术书籍)