打包 Java 应用程序的教程
What are some tutorials and best practices that show to make a build from source code for a Java desktop / Java EE web application?
I want to learn what needs to be packaged as a WAR/JAR from source and how it must be structured?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用 Maven:
mvn package
创建的,如果你此时没有使用 Maven - 你应该认真对待考虑一下。它将减轻您大量的构建、打包和依赖管理任务。
If you're using Maven:
mvn package
If you're not using Maven at this point - you should seriously consider it. It will relieve you of a lot of build, packaging and dependency management task.
以下是一些入门链接:
请参阅外部链接部分以获取更多详细信息。
编辑:抱歉,链接已损坏,您需要在末尾添加结束“)”。
Here are a few links to get started:
See the external links section for more detailed information.
EDIT: Sorry the links are broken you need to add the closing ')' at the end.