* First commit for Hibernate 5 Multitenancy tutorial * Changes to fix the code. * Added hibernate begin transaction code. * Changes to solve the multitenancy issue. * Changes to integrate h2 * Changing configs to solve the error * Changes to solve h2 error... * Changes to fix H2 error. * Cleaned POM.xml and changed entity name * Changes table name to supplier * Removed MySql Dep from pom.xml. * Changes as per comment in the PR... * Removed try-catch from test functions. * Removing the hibernate xml config. * Changed the formatting as per the formatter. * Clean up after merge. * # WARNING: head commit changed in the meantime Merge remote-tracking branch 'upstream/master' into hibernate5-multitenancy Conflicts: hibernate5/pom.xml pom.xml
73 lines
2.7 KiB
Java
73 lines
2.7 KiB
Java
package com.baeldung.hibernate;
|
|
|
|
import static org.junit.Assert.assertNotEquals;
|
|
|
|
import java.io.IOException;
|
|
import java.sql.Connection;
|
|
import java.sql.DriverManager;
|
|
import java.sql.SQLException;
|
|
import java.sql.Statement;
|
|
|
|
import org.hibernate.Session;
|
|
import org.hibernate.SessionFactory;
|
|
import org.hibernate.Transaction;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
|
|
import com.baeldung.hibernate.pojo.Supplier;
|
|
|
|
public class MultiTenantHibernateIntegrationTest {
|
|
@Test
|
|
public void givenDBMode_whenFetchingSuppliers_thenComparingFromDbs() throws UnsupportedTenancyException, IOException {
|
|
SessionFactory sessionFactory = HibernateMultiTenantUtil.getSessionFactory();
|
|
|
|
Session db1Session = sessionFactory.withOptions().tenantIdentifier("mydb1").openSession();
|
|
|
|
initDb1(db1Session);
|
|
|
|
Transaction transaction = db1Session.getTransaction();
|
|
transaction.begin();
|
|
Supplier supplierFromDB1 = (Supplier) db1Session.createCriteria(Supplier.class).list().get(0);
|
|
transaction.commit();
|
|
|
|
Session db2Session = sessionFactory.withOptions().tenantIdentifier("mydb2").openSession();
|
|
|
|
initDb2(db2Session);
|
|
db2Session.getTransaction().begin();
|
|
Supplier supplierFromDB2 = (Supplier) db2Session.createCriteria(Supplier.class).list().get(0);
|
|
db2Session.getTransaction().commit();
|
|
|
|
System.out.println(supplierFromDB1);
|
|
System.out.println(supplierFromDB2);
|
|
|
|
assertNotEquals(supplierFromDB1, supplierFromDB2);
|
|
|
|
}
|
|
|
|
private void initDb1(Session db1Session) {
|
|
System.out.println("Init DB1");
|
|
Transaction transaction = db1Session.getTransaction();
|
|
transaction.begin();
|
|
db1Session.createSQLQuery("DROP ALL OBJECTS").executeUpdate();
|
|
db1Session
|
|
.createSQLQuery(
|
|
"create table Supplier (id integer generated by default as identity, country varchar(255), name varchar(255), primary key (id))")
|
|
.executeUpdate();
|
|
db1Session.createSQLQuery("insert into Supplier (id, country, name) values (null, 'John', 'USA')").executeUpdate();
|
|
transaction.commit();
|
|
}
|
|
|
|
private void initDb2(Session db2Session) {
|
|
System.out.println("Init DB2");
|
|
Transaction transaction = db2Session.getTransaction();
|
|
transaction.begin();
|
|
db2Session.createSQLQuery("DROP ALL OBJECTS").executeUpdate();
|
|
db2Session
|
|
.createSQLQuery(
|
|
"create table Supplier (id integer generated by default as identity, country varchar(255), name varchar(255), primary key (id))")
|
|
.executeUpdate();
|
|
db2Session.createSQLQuery("insert into Supplier (id, country, name) values (null, 'Miller', 'UK')").executeUpdate();
|
|
transaction.commit();
|
|
}
|
|
}
|