从 My Eclipse IDE 进行自定义重新部署
专家 当我们从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类和库的 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 theWEB-INF
andMETA-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
, aweb application
consuming that service, and alibrary
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.