Springboot Multi-tenancy不适用于多线程

时间:2017-10-04 12:48:46

标签: multithreading hibernate spring-boot spring-data-jpa multi-tenant

我引用了这个链接来为两个数据源实现springboot多租户 - 不同的数据库(相同的模式) - https://anakiou.blogspot.in/2015/08/multi-tenant-application-with-spring.html

在我的应用程序中没有引入任何多线程之前,它工作正常。

当我添加一个ExecutorService来为csv文件中的每个记录插入多个表时 - 我看到新线程不包含其他服务调用所使用的原始租户标识符的信息。

相反,它开始在新线程中使用默认租户。

我们如何解决这个问题?真的很感激任何指针。

编辑1:ExecutorService代码:尝试将当前租户设置如下:

List<Future<Output>> futures = new ArrayList<Future<Output>>();
        for (int j = 0; j < myList.size(); j++) {

            final Output output= myList.get(j);

            Future<Output> future = executorService.submit(new Callable<Output>() {
                @Override
                public Output call() throws Exception {
                    **TenantContext.setCurrentTenant(<current tenant goes here>);**
                    Output currentOutput= someService.executeQueries(output);
                    return currentOutput;
                }
            });
            futures.add(future);
        }

1 个答案:

答案 0 :(得分:1)

传播租户的常规方法是使用ThreadLocal s。在博客示例中,它使用类RequestContextHolder将整个请求存储在ThreadLocal中,然后从那里解析租户。

当您更改线程时,线程本地在新线程中丢失,除非您再次设置它们。