博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于dubbo+shiro导致dubbo无法注入到Realm的问题解决方案
阅读量:4841 次
发布时间:2019-06-11

本文共 1703 字,大约阅读时间需要 5 分钟。

问题的原因加载顺序引起的。

方案一:用spring-dubbo配置文件的形式, 这个注入应该没问题

主要说方案二:采用dubbo注解@Reference注入, 在实际情况中, 由于shiro和dubbo加载顺序的原因, 会导致使用@Reference的bean注入到Realm中为null, 故在其他地方可以引用 该dubbo bean, 然后转化为spring bean,再用spring上下文调用即可得到转化后的dubbo bean即可。(配置文件的形式会 先把dubbo bean转化为spring bean, 再采用@Autowired注入在加载顺序上不会和dubbo冲突, 故可以成功注入)

方法:

1. 在Controller上引用该dubbo bean

@Reference(version = "1.0.0")

IAccountService iAccountService;

@Bean(name = "iAccountService")

public IAccountService getIAccountService(){
  return iAccountService;
}

 

2.添加上下文工具类

@Component

public class SpringBeanFactoryUtils implements ApplicationContextAware {
      private static ApplicationContext context = null;

      public static <T> T getBean(Class<T> type) {

             return context.getBean(type);
       }
     public static <T> T getBean(String name, Class<T> type) {
            return context.getBean(name, type);
        }

    @Override

     public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
     System.err.println("SpringBeanFactoryUtils be inited...");
     if (SpringBeanFactoryUtils.context == null) {
       SpringBeanFactoryUtils.context = applicationContext;
     }
     }
}

 

 

3.在Realm中引用bean

public class MyShiroRealm extends AuthorizingRealm {

  @Override

  protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
  String userName = (String) token.getPrincipal();
  IAccountService iAccountService = SpringBeanFactoryUtils.getBean("iAccountService",IAccountService.class);
  Account account = iAccountService.selectAccountByLogin(userName, null);

  if (account == null) {

  throw new UnknownAccountException();// 用户名密码不正确
  }

。。。。。。

转载于:https://www.cnblogs.com/harking/p/9673547.html

你可能感兴趣的文章
c++ throw异常(学习)
查看>>
IDEA中Git的使用
查看>>
ng -v 不是内部或外部命令
查看>>
图片模糊化处理
查看>>
flash player 请求本地存储为无限制
查看>>
程序逻辑的组织方式
查看>>
今天正式开通博客
查看>>
javascript逗号添加函数
查看>>
Codeforces Round #307 (Div. 2) E. GukiZ and GukiZiana 分块
查看>>
hdu 5452 Minimum Cut 树形dp
查看>>
perf4j @Profiled常用写法
查看>>
配置的热更新
查看>>
ios view的frame和bounds之区别(位置和大小)
查看>>
USB小白学习之路(11) Cy7c68013A驱动电路设计注意事项(转)
查看>>
Luogu 2530 化工厂装箱员
查看>>
自定义webUI实例
查看>>
用NSAttributedString实现简单的图文混排
查看>>
多语境的操作
查看>>
SNS营销——网商成功之道
查看>>
jqgrid 加载时第一页面只显示多少条数据
查看>>