开发一个 eclipse 插件部署在我的服务器上
我们如何创建一个 eclipse popmenu 插件(类似于 Google App Engine SDK)。即如果我创建了一个项目,当我单击插件菜单时,它应该能够部署到我的 tomcat/webapps 文件夹。
How can we create an eclipse popmenu plugin (which is similar to Google App engine SDK). i.e. If I have created a project, when I clicked on the plugin menu, it should be able to deploy to my tomcat/webapps folder.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么要重新发明轮子? Eclipse Web 工具平台 已经提供了该功能。
要部署到远程服务器,您可以从项目上下文菜单中选择“导出/Web/WAR 文件”选项,如下所示,并将其直接导出到远程安装的 tomcat/webapps 文件夹,如下所示。
如果无法安装远程文件系统,您可能必须依靠 ant 或 Maven 任务来发布您的战争文件。
Why do you want to reinvent the wheel? The Eclipse Web Tools Platform already provides that functionality.
For deploying to a remote server you may choose the Export / Web / WAR file option from your projects context menu as shown below and export it directly to the remotly mounted tomcat/webapps folder as shown below.
If mounting the remote filesystem is not possible you will probably have to rely to ant or maven tasks to publish your war file.