现象
应用任务运行异常: exception is java.lang.IllegalStateException: Duplicate spring bean id orgQueryService
排查
orgQueryService的bean是写在spring-dubbo-consumer.xml中的,而且这个bean确实只有一个
再看报错信息可以看到spring-dubbo-consumer.xml被加载了两次,查找spring-dubbo-consumer.xml被引用的位置发现
spring-dubbo-consumer.xml先被引用进了spring-service.xml里,而后spring-dubbo-consumer.xml,spring-service.xml又都被引用到了web.xml中
解决
将spring-service.xml中import的spring-dubbo-consumer.xml注释掉,重新启动即可