How To Deploy A Modular (Multi-app) System To CloundFoundry

可紊 提交于 2019-12-05 18:12:16

Yes.

My understanding is that there's no concept of deploying multiple applications to the same application server instance. In most cases this is OK though. With our BI application we would normally deploy it to the same tomcat instance as another application is running on. But instead we deploy it separately. It can access the same databases, and nothing is preventing Single Sign On between the applications or other integration features from being added.

EDIT: application1 presumably is working well and using some database. If you want application2 to access the same data you can just bind it:

vmc bind-service my-database-service application2

Alternatively, of course, you could merge your two applications together. That will probably give the desired result... but it's probably a big effort.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!