Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From the documents provided I learn that the hibernate4 allows multi-tenacity in three different levels.

Though what I cant understand is, whether we can have different set of entities for different tenants.

Thanks.

share|improve this question

1 Answer

No you do not need multiple set of entities, the point of multi tenancy is to use the same relational structure (set of entities) but have multiple copies of it. One copy per tenant essentially.

I have written a short post on it you can find heremulti tenancy in hibernate 3

share|improve this answer
Well.. I get the point. But the issue I face is that there are minor customization in entities - requested by tenants. Seems that achieving the functionality is a bit tough. – Raman Srinivasan Apr 21 at 9:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.