如何实现“共享数据库,分离模式”多租户策略
我必须使用共享数据库单独模式方法来启用多租户 Web 应用程序。该应用程序是使用 Java/J2EE 和 Oracle 10g 构建的。
我需要一个应用程序服务器,使用具有多个架构的共享数据库,每个客户端一个架构。
实现这一目标的最佳实施方法是什么?
- 中间层(应用程序服务器)级别需要做什么?
- 每个客户端是否需要有多个主机标头?
- 如何根据访问应用程序的客户端动态连接到正确的架构?
I have to make a web application multi-tenant enabled using Shared database separate schema approach. The application is built using Java/J2EE and Oracle 10g.
I need to have one single appserver using a shared database with multiple schema, one schema per client.
What is the best implementation approach to achieve this?
- What needs to be done at the middle tier (app-server) level?
- Do I need to have multiple host headers each per client?
- How can I connect to the correct schema dynamically based on the client who is accessing the application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在较高层面上,以下是一些需要考虑的事项:
At a high level, here are some things to consider: