Most voted "multi-tenancy" questions
Multitenancy refers to a software architecture principle in which a single instance of the software runs on a server, serving several client-organizations (tenants).
Learn more…23 questions
Sort by count of
-
18
votes2
answers8121
viewsWhat is a Multi-tenancy?
What is Multi-tenancy? What main approaches to implementing it?
-
9
votes1
answer767
viewsMulti-client Web API Structure
I’m in the following situation: I have a web application that accesses the data through a C#Webapi. I need to apply the concept of multitenancy in order to allow my application to be accessed by…
-
8
votes3
answers2192
viewsHow to work with multi tenancy architecture?
I was asked to develop an application with multi tenancy architecture in the PHP language using Mysql as a database. After reading several materials and posts on the Internet, I had a question. How…
-
5
votes2
answers462
viewsLaravel multitenancy with a user-only BD
I’ve been researching about Saas and Multi-tenancy but has little material in Portuguese. I saw that it is possible to make a database for each company, but my question is: You can make a unique web…
-
3
votes1
answer172
viewsMulticliente (multi-tenant) application with Asp.net webforms and routes
I am developing a multi-client web application for a Saas and I would like each client to have a different URL to access their area in the application, for example: http://meudominio.com/cliente1…
-
3
votes1
answer741
viewsUpdate all schemas with multitenancy architecture
Good morning. Next, I have a multitenancy application using Hibernate with JPA. We recently implemented the multitenancy architecture and persistence.xml was configured to automatically update the…
-
3
votes1
answer292
viewsConnection to separate PDO databases - (multi-tenancy )
I have the following password for my application: I have a PHP + Mysql application, with PDO connection, I need the application to be shared with all registered companies, but each company will have…
-
2
votes1
answer1217
viewsSpring Bean sessionFactory with Nullpointerexception error
Good morning. I am trying to make a configuration in the spring-jpa.xml file to support a multitenancy architecture separating each client by Schema. I use a datasource that has been configured in…
hibernate spring jpa-2.0 wildfly multi-tenancyasked 9 years, 11 months ago Giancarlo Abel Giulian 3,999 -
2
votes1
answer1372
viewsUpdate column and table settings with Hibernate
Good afternoon. I would like to know and confirm if you have any way to update table and column definitions in each schema using Hibernate. For now, what I’ve seen so far is that Hibernate only…
-
2
votes1
answer468
viewsHibernate Multitenant problem with identification of current tenancy
I am using Hibernate multitenant by schemas, use Postgresql database. My problem is the following I have a service where I make a select in a public schema table, then for each returned item I have…
-
2
votes3
answers208
viewsHow to configure Settings.py to use Django-tenant-schema?
I need to configure my Django to run llb django-tenant-schema My project does not create schemas and soon I cannot synchronize my bank with the project. I’m having trouble understanding how you are…
-
2
votes1
answer518
viewsAttributeerror - 'User' Object has no attribute 'project' - Django
I am new in Django and have a question. I made a system that saves the contents of the respective logged in user. Thus, each user will have their own content when viewing (multi-tenant system).…
-
1
votes0
answers34
viewsChange Cultureinfo to MVC5 / C# and Multi-tenancy
Good afternoon folks! I am working with MVC5 and need a help in the following situation.. I have a view that contains a language selector, and needs to dynamically change the content after selecting…
-
1
votes0
answers181
viewsMulti tenancy springboot
How do spring keep tenantID present in all requests? I would like to point out that my idea for using multitenant would be as follows www.nomeDoSistema.com.br/nomeDaEmpresa/ and for each company…
-
1
votes1
answer219
viewstenant application for multiple users
Well my doubt and while the approach of creating a database in the following scenarios Multiple Database, a user-created database Multiple Schemas, well would have only a single database, but each…
-
1
votes2
answers329
viewsLaravel architecture for Saas systems
I am making a system in Laravel, but this system will serve several users, and these users can register their customers. The big question is, so that it doesn’t stay all in a single database, I…
-
1
votes1
answer98
viewsMulti-layered development and business rule
I work with a team developing an ERP and am responsible for issuing reports, of which one of them runs a select in the bank that in tests took more than 2h running, which led to errors and a big…
-
1
votes0
answers299
viewsRun Spring Boot project without Datasource and Jdbctemplate
I have a project Java with Spring Boot that has to be mult-tenacy and for that I’m trying to use the Flyway to execute the migrate() by an endpoint passing the data needed to connect to a specific…
-
0
votes1
answer154
viewsShared use of databases
A Mysql database can have shared use, that is, more than one CMS can use the same database, changing only the table name? Are there limits? Are there contraindications? I’m asking because I’m…
-
0
votes0
answers43
viewsSet a field in all models
I’m trying to create an app that works with several companies and I always need to record the field company_id whenever creating and/or updating any model, what’s the best way to do this? I thought…
-
0
votes1
answer175
viewsQueue Laravel with Multitenancy
Boas Galera! I have a multi database application where every schema is a client, everything works perfectly, except the queues. I am directing all Jobs to the main database, Jobs records are…
-
0
votes0
answers74
viewsFilter combobox according to the list of projects created by each user logged in to Django
I’m new to Jango and I have a lot to learn. I’m developing a system in which the logged-in user registers their requirement, but each requirement is tied to a project that the same user created. As…
-
-2
votes1
answer161
viewsConfiguration of NGINX + uWSGI + Django in a multi-tenancy application
I have a single application in Django hosted on AWS. But these days, I turned it into multi-tenancy, using Django-tenant-schemas. Locally, it runs normally. I can create my tenants and access them…