springboot 整合dubbox,采用外部应用服务器的servlet容器配置问题
在使用该配置使用外部容器时,官方说明:
如果你是用spring的ContextLoaderListener来加载spring,则必须保证BootstrapListener配置在ContextLoaderListener之前,否则dubbo初始化会出错。
是否有大神能够指导如何实现这个配置保证BootstrapListener在ContextLoaderListener之前完成配置?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
配置文件的方式我知道呢,因为使用了springboot所以希望不通过配置文件,而是注解去配置监听并达到我描述的效果
回复
https://github.com/yefengyueyuan/spring-boot-starter-dubbox
回复
你的问题解决了吗
很简单啊,配置 BootstrapListener 在 ContextLoaderListener 即可,如
<listener>
<listener-class>com.alibaba.dubbo.remoting.http.servlet.BootstrapListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>