English 中文(简体)
停止Eclipse在保存文件时重新启动我的web应用程序
原标题:
  • 时间:2009-04-03 01:19:04
  •  标签:

我正在Eclipse中创建一个JSF/Facelets web应用程序。我已经将我的项目配置为使用由Eclipse启动/停止的Tomcat(6.0)服务器。

每当我保存一个文件(例如.xhtml)时,Eclipse都会重新启动应用程序,破坏我的HTTP会话。这很烦人,因为我经常更新.xhtml文件,而且应用程序不需要重新启动来检测更改。

有没有办法阻止Eclipse重新启动应用程序?具体来说,我可以将Eclipse配置为仅在保存特定类型的文件时重新启动应用程序吗?

最佳回答

In the server View, double click on your Tomcat instance. This will open the properties of your Tomcat server. As I am not sure of which parameter will help you to solve your problem, check the following options in the latter view:

  • Automatic Publishing, option "Override default settings" selected, 1 second for the publishing interval.
  • In server options, uncheck options "Server modules without publishing" and "publish module contexts to separate XML files".
  • In the modules tab, for each modules deployed, check that Auto Reload is enabled.

希望这对你有帮助。

问题回答

我一直使用这个,它对我来说很好。只有当你更改类或web描述符时,上下文才会重新加载。

在你的项目结构中,你保存了.xhtml文件,这使得eclipse在更改时重新加载上下文?

如果您在Eclipse中设置了一个构建器以在保存时进行部署,则可能会发生这种情况。右键单击您的项目->;属性->;建筑商

关闭“自动生成”





相关问题
热门标签