weblogic 10上的热部署
我厌倦了在网络逻辑上编译和重新部署 .ear 文件。您能告诉我如何进行热部署吗?我使用 weblogice 10 作为应用程序服务器和 ATG 框架。我的 .ear 文件位于 ATG 中,而不是位于 weblogic 中。我尝试更改 java 文件,编译更新的 .class 文件并将其与 .jar 文件合并,并将 .jar 文件复制到 .ear 文件中,但没有反映出来。
I'm tired by compiling and redeploying .ear file on web logic. could you please let me know how to do hot deployment. I'm using weblogice 10 as application server and ATG framework. my .ear file is withing ATG not in weblogic. I tried by changing the java file, compiled and merged updated .class file with .jar file and copied .jar file in .ear file but it is not reflected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该通过位于
ATG_DIR\home\bin
中的runDynamoOnWeblogic.bat
运行服务器,并在调用时使用-run-in-place
键.bat 文件。但您应该解决 IDE 中自动构建的问题。例如,我配置我的eclipse,以便eclipse在编辑后编译java类并将其直接放入
ATG_DIR\My_module\classes.jar
目录。注意:classes.jar 应该是分解存档。
希望这对您有帮助。
You should run your server via
runDynamoOnWeblogic.bat
which located inATG_DIR\home\bin
and use-run-in-place
key when call this bat file.But you should reslove issue with autobuilding in your IDE. For example I config my eclipse so that eclipse compile java classes after editing and put it directly to the
ATG_DIR\My_module\classes.jar
directory.note: classes.jar should be exploded archive.
Hope this help you.