构建部署基础知识

发布于 2024-11-06 13:38:33 字数 211 浏览 0 评论 0原文

我更喜欢 UI 开发,而不是 Java...所以,我想了解以下内容到底意味着什么; 1. Build Deploy(它是否只是一个复制到服务器的文件夹,如果是,其中是否只有类文件,...) 2. 分解构建是什么意思?

如果有人可以用非常简单的语言(而不是非常技术性的)向我解释,那就太好了......

此外,任何简单语言的在线资源都会有帮助......

谢谢。

I am more into UI dev and less into Java...So, I would like to understand what exactly does the following things mean;
1. Build Deploy (Is it just a folder coped to a server and if yes, are there only class files in there,...)
2. What does exploded build mean?

If someone could explain me in very easy language (and not extremely technical), that would be really great...

Also any online resources in simple language would be helpful..

Thank you.

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

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

发布评论

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

评论(2

抱猫软卧 2024-11-13 13:38:33
  1. 构建部署

构建部署过程将包括许多事情,例如

a) 检查服务器配置,如数据库配置、服务器资源配置等。

b) 检查应用程序配置,意味着应用程序相关配置文件中的任何更改。

c) 将代码部署到服务器上
在此过程中,服务器将读取部署描述符并根据 DD xml (web.xml) 中提供的配置部署应用程序
它还根据 ejb-jar.xml 中提供的配置部署 ejb 模块

  1. Build Deploy

Build deploy process will include many things such as

a) Checking the server configurations like database configurations, server resources configurations etc.

b) Checking the Application Configurations , means any changes in the application related configuration files.

c) Deplying the code on to the server
during this process server will read up the deployment descritor and deploy the application based on the configuration provided in DD xml (web.xml)
Also it deploy the ejb modules based on the configuration provided in ejb-jar.xml

很酷不放纵 2024-11-13 13:38:33
  1. 构建部署

    您将应用程序构建到某个包中并将其部署在服务器上。

例如,如果它的Web应用程序将其打包在war文件中,并将此war文件放在tomcat的服务器webapp上(目录因服务器而异),然后启动服务器来部署它。

  1. Build Deploy

    You build your application into some packaging and deploy it on the server.

for example if its web app you pack it in war file and put this war file on the server webapp for tomcat (dir differs from server to server) and start the server to deploy it.

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