Code as following:
@Service(
version = "${dubbo.service.version}",
application = "${dubbo.application.id}",
protocol = "${dubbo.protocol.id}",
registry = "${dubbo.registry.id}"
)
public class DefaultDemoService implements DemoService {
public String sayHello(String name) {
return "Hello, " + name + " (from Spring Boot)";
}
}
The placeholder was not resolved from the bean name of DefaultDemoService , thus it's name will contain "${dubbo.service.version}"
Code as following:
The placeholder was not resolved from the bean name of
DefaultDemoService, thus it's name will contain "${dubbo.service.version}"