Spring Boot + Hibernate + JPA + Postgres Многопользовательское приложение не может сохранить сущность - PullRequest
0 голосов
/ 21 мая 2019

Я создаю Multitenant saas-приложение, используя одну базу данных с несколькими схемами; одна схема на клиента. Я использую Spring Boot 2.1.5, Hibernate 5.3.10 с совместимыми данными весны jpa и postgres 11.2.

Я подписался на этот пост https://dzone.com/articles/spring-boot-hibernate-multitenancy-implementation.

Попробовал отладку кода, ниже приведены мои выводы:
* Для схемы по умолчанию, предоставленной в конфигурации источника данных, Hibernate правильно проверяет схему. Он создает таблицы / сущности в схеме по умолчанию, которые отсутствуют или являются новыми.
* Идентификатор клиента правильно определен, и hibernate создает сеанс с использованием этого клиента.

Я загрузил код в репо ниже:

https://github.com/naveentulsi/multitenant-lithium

Некоторые важные классы, которые я добавил сюда.

    @Component
    @Log4j2
    public class MultiTenantConnectionProviderImpl implements 
       MultiTenantConnectionProvider {

    @Autowired
    DataSource dataSource;

    @Override
    public Connection getAnyConnection() throws SQLException {
        return dataSource.getConnection();
    }

    @Override
    public void releaseAnyConnection(Connection connection) throws SQLException {
        connection.close();
    }

    @Override
    public Connection getConnection(String tenantIdentifier) throws SQLException {
        final Connection connection = getAnyConnection();
        try {
            if (!StringUtils.isEmpty(tenantIdentifier)) {
                String setTenantQuery = String.format(AppConstants.SCHEMA_CHANGE_QUERY, tenantIdentifier);
                connection.createStatement().execute(setTenantQuery);
                final ResultSet resultSet = connection.createStatement().executeQuery("select current_schema()");
                if(resultSet != null){
                    final String string = resultSet.getString(1);
                    log.info("Current Schema" + string);
                }
                System.out.println("Statement execution");
            } else {
                connection.createStatement().execute(String.format(AppConstants.SCHEMA_CHANGE_QUERY, AppConstants.DEFAULT_SCHEMA));
            }
        } catch (SQLException se) {
            throw new HibernateException(
                    "Could not change schema for connection [" + tenantIdentifier + "]",
                    se
            );
        }
        return connection;
    }

    @Override
    public void releaseConnection(String tenantIdentifier, Connection connection) throws SQLException {
        try {
            String Query = String.format(AppConstants.DEFAULT_SCHEMA, tenantIdentifier);
            connection.createStatement().executeQuery(Query);
        } catch (SQLException se) {
            throw new HibernateException(
                    "Could not change schema for connection [" + tenantIdentifier + "]",
                    se
            );
        }
        connection.close();
    }

    @Override
    public boolean supportsAggressiveRelease() {
        return true;
    }

    @Override
    public boolean isUnwrappableAs(Class unwrapType) {
        return false;
    }

    @Override
    public <T> T unwrap(Class<T> unwrapType) {
        return null;
    }
}
@Configuration
@EnableJpaRepositories
public class ApplicationConfiguration implements WebMvcConfigurer {

    @Autowired
    JpaProperties jpaProperties;

    @Autowired
    TenantInterceptor tenantInterceptor;

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(tenantInterceptor);
    }


    @Bean
    public DataSource dataSource() {
        return DataSourceBuilder.create().username(AppConstants.USERNAME).password(AppConstants.PASS)
                .url(AppConstants.URL)
                .driverClassName("org.postgresql.Driver").build();
    }

    @Bean
    public JpaVendorAdapter jpaVendorAdapter() {
        return new HibernateJpaVendorAdapter();
    }

    @Bean
    public LocalContainerEntityManagerFactoryBean entityManagerFactory(DataSource dataSource, MultiTenantConnectionProviderImpl multiTenantConnectionProviderImpl, CurrentTenantIdentifierResolver currentTenantIdentifierResolver) {
        Map<String, Object> properties = new HashMap<>();

        properties.put("hibernate.dialect", "org.hibernate.dialect.PostgreSQLDialect");
        properties.put("hibernate.hbm2ddl.auto", "update");
        properties.put("hibernate.ddl-auto", "update");
        properties.put("hibernate.jdbc.lob.non_contextual_creation", "true");
        properties.put("show-sql", "true");
        properties.put("hikari.maximum-pool-size", "3");
        properties.put("hibernate.default_schema", "master");
        properties.put("maximum-pool-size", "2");

        if (dataSource instanceof HikariDataSource) {
            ((HikariDataSource) dataSource).setMaximumPoolSize(3);
        }

        properties.put(Environment.MULTI_TENANT, MultiTenancyStrategy.SCHEMA);
        properties.put(Environment.MULTI_TENANT_CONNECTION_PROVIDER, multiTenantConnectionProviderImpl);
        properties.put(Environment.MULTI_TENANT_IDENTIFIER_RESOLVER, currentTenantIdentifierResolver);
        properties.put(Environment.FORMAT_SQL, true);


        LocalContainerEntityManagerFactoryBean em = new LocalContainerEntityManagerFactoryBean();
        em.setDataSource(dataSource);

        em.setPackagesToScan("com.saas");
        em.setJpaVendorAdapter(jpaVendorAdapter());
        em.setJpaPropertyMap(properties);

        return em;
    }
}
@Component
public class TenantResolver implements CurrentTenantIdentifierResolver {


    private static final ThreadLocal<String> TENANT_IDENTIFIER = new ThreadLocal<>();

    public static void setTenantIdentifier(String tenantIdentifier) {
        TENANT_IDENTIFIER.set(tenantIdentifier);
    }

    public static void reset() {
        TENANT_IDENTIFIER.remove();
    }

    @Override
    public String resolveCurrentTenantIdentifier() {
        String currentTenant = TENANT_IDENTIFIER.get() != null ? TENANT_IDENTIFIER.get() : AppConstants.DEFAULT_SCHEMA;
        return currentTenant;
    }

    @Override
    public boolean validateExistingCurrentSessions() {
        return true;
    }
}

При успешном внедрении TenantId с помощью TenantResolver entityManager должен иметь возможность сохранять объекты в соответствующей схеме клиента в базе данных. То есть, если мы создаем объект сущности и сохраняем его в БД, он должен быть успешно сохранен в БД. Но в моем случае сущности не сохраняются ни в одной схеме, кроме схемы по умолчанию.

Обновление 1: мне удалось выполнить мультитенантное переключение схем с помощью mysql 8.0.12 Все еще не в состоянии сделать это с postgres.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...