<!-- 开启dubbo注解支持 --> <!-- 扫描注解包路径,多个包用逗号分隔,不填pacakge表示扫描当前ApplicationContext中所有的类 --> <dubbo:annotation package="com.bounter" />
import com.alibaba.dubbo.config.annotation.Service; @Servicepublic class DubboServiceImpl implements DubboService { }
<!-- 开启dubbo注解支持 --> <!-- 扫描注解包路径,多个包用逗号分隔,不填pacakge表示扫描当前ApplicationContext中所有的类 --> <dubbo:annotation package="com.bounter" />
<!-- 引入dubbo配置,解决dubbo注解不兼容问题 --> <import resource="classpath:spring-dubbo.xml"/>
@Referenceprivate DubboService dubboService;
Das obige ist der detaillierte Inhalt vonDetaillierte Erläuterung der kommentierten Dubbo-Dienstkonfigurationsbeispiele. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!