从 My Eclipse IDE 进行自定义重新部署

发布于 2024-10-24 23:59:02 字数 167 浏览 1 评论 0原文

专家 当我们从 MYEclipse 等 IDE 重新部署任何应用程序时,它只是重新部署 .class 文件。我想自定义eclipse开发人员,这样部署者也可以部署自定义文件(类文件除外)。

我应该为 Myeclipse 编写任何自定义 ANT 脚本或 My Eclipse 为我们提供的任何自定义设置吗?

Experts
When we redeploy any application from an IDE such as MYEclipse , it just redeploys the .class files. I want to customize the eclipse developer, so the deployer can also deploy the custom files (other than class files).

Should i write any custom ANT script for Myeclipse or any custom settings the My Eclipse provides us ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱娆 2024-10-31 23:59:02

类和库的 IDE 通常会部署在 web / www-root 文件夹(在包含 WEB-INF 的文件夹中)中找到的所有内容。和 META-INF)。

因此,您可以使用 IDE 通过构造该文件夹的内容来配置已部署的应用程序结构。

如果它仍然不能满足您的需求,那么ANT将是最好的选择。

在我看来,ANT 始终是最佳选择,但事实证明,使用开发环境的功能比编写 ant 构建文件更快。

假设您正在开发一个网络服务,一个使用该服务的网络应用程序,并且服务和 Web 应用程序都使用的,然后使用单个(甚至不长或困难的)ant 文件就可以构建它们,创建 aar、war 和jar 文件并将它们全部部署在正确的位置,例如。在 axis 下、全局 lib 文件夹内和 webapps 文件夹中。
所有这些都一步到位。

IDEs along the classes and libraries usually deploy everything they find in the web / www-root folder (in the folder that contains the WEB-INF and META-INF).

So you can configure your deployed applications structure using the IDE by structuring the content of that folder.

If it still doesn't fit your needs, then ANT would be the best option.

In my opinion ANT is always the best option, but using the development environment's functionality is proven faster then writing an ant build file.

Say, if you're developing a web service, a web application consuming that service, and a library that both the service and the webapp uses, then with a single (and not even long or difficult) ant file you can build them, create the aar, war and jar files and deploy them all in their correct places, eg. under axis, inside the global lib folder, and in the webapps folder.
All these in one step.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文