构建部署基础知识
我更喜欢 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
构建部署过程将包括许多事情,例如
a) 检查服务器配置,如数据库配置、服务器资源配置等。
b) 检查应用程序配置,意味着应用程序相关配置文件中的任何更改。
c) 将代码部署到服务器上
在此过程中,服务器将读取部署描述符并根据 DD xml (web.xml) 中提供的配置部署应用程序
它还根据 ejb-jar.xml 中提供的配置部署 ejb 模块
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
构建部署
您将应用程序构建到某个包中并将其部署在服务器上。
例如,如果它的Web应用程序将其打包在war文件中,并将此war文件放在tomcat的服务器webapp上(目录因服务器而异),然后启动服务器来部署它。
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.