sql >> データベース >  >> NoSQL >> MongoDB

JavaFuture-SpringAuthenticationはAuditorAwareではnullです

    Springセキュリティコンテキストは常にThreadlocalにバインドされています。

    おそらく、セキュリティコンテキストにMODE_INHERITABLETHREADLOCALを追加で設定することもできます。

    @Bean
    public MethodInvokingFactoryBean methodInvokingFactoryBean() {
        MethodInvokingFactoryBean methodInvokingFactoryBean = new MethodInvokingFactoryBean();
        methodInvokingFactoryBean.setTargetClass(SecurityContextHolder.class);
        methodInvokingFactoryBean.setTargetMethod("setStrategyName");
        methodInvokingFactoryBean.setArguments(new String[]{SecurityContextHolder.MODE_INHERITABLETHREADLOCAL});
        return methodInvokingFactoryBean;
    }
    

    http://www.ogrigas .eu / spring / 2010/04 / inherit-spring-security-context-in-child-threads

    Spring Security SecurityContextHolder戦略を設定する方法は?



    1. MongoDBと負荷分散の概要

    2. 限られたデータでの$lookup集計のMongoDbPostフォーマット

    3. mongorestore失敗:到達可能なサーバーがありません

    4. 日中の株式データを保存するためのmongodbの使用