查看Weblogic服务器中已部署的应用程序
我是 weblogic 的新手,我想了解我的文件在 Weblogic 中是如何排列的? 我只使用过 Tomcat,这是我第一次在 Weblogic Server 中部署。
在 Tomcat 中,我可以通过查看 Tomcat 主目录来查看项目的分解视图 和 WebApps 文件夹。在那里我可以查看我的应用程序 css/js/resource 文件是如何部署的。
%TOMCAT_HOME%\webapps
我正在 Weblogic 中寻找类似的功能?有人可以告诉我怎么做吗?谢谢
顺便说一下我正在使用Weblogic 10.3.4
I am new to weblogic and I would like to find out how my files are arrange in Weblogic?
I have used only Tomcat and this is the first time where I will deploy in a Weblogic Server.
In Tomcat, I could view the exploded view of my projects by looking at the Tomcat Home Directory
and the WebApps folder. There I could view how my application css/js/resource files are deployed.
%TOMCAT_HOME%\webapps
I am looking for a similar functionality in Weblogic? Can somebody tell me how? Thanks
I am using Weblogic 10.3.4 by the way
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WebLogic 支持多种不同的应用程序部署方式,因此您的问题的答案并不是很简单。
通常,如果您部署 war/ear,那么 WebLogic 会将它们放置在
$WEBLOGIC_HOME/application
目录中。然后,WebLogic 会将您的 Ear/war 分解到一个单独的wl_stage
文件夹中,该文件夹位于您的 ManagedServer 目录下。您还可以使用 WebLogic 的自动部署功能(不建议用于生产应用程序),WebLogic 将自动分解应用程序。
总之,您可能需要查阅文档才能回答所有问题。
http://download.oracle.com/docs/cd /E13222_01/wls/docs81/deployment/overview.html
WebLogic supports several different ways of deploying applications, so the answer to your question is not very straightforward.
Typically, if you deploy a war/ear, then WebLogic will place them in the
$WEBLOGIC_HOME/application
directory. WebLogic will then explode your ear/war into a separatewl_stage
folder that will be under your managedServer directory.You can also use the ability of WebLogic to
autodeploy
( not recommended for production apps ) where WebLogic will automatically explode the app.In summary, you probably need to reach for the documentation to get all your questions answered.
http://download.oracle.com/docs/cd/E13222_01/wls/docs81/deployment/overview.html
我不太确定您是否想找出部署在哪里或应用程序已部署在哪里。
但如果你想查看weblogic中部署的应用程序在哪里,你可以在启动服务器后转到它的控制台(例如localhost:7001/console)。然后按照以下步骤操作:
I'm not quite sure if you want to find out where to deploy or where applications have been deployed.
But if you want to see where are the deployed applications in weblogic, you can go to its console (e.g. localhost:7001/console) after start the server. Then follow the following steps: