Goal of autoconfiguration is least work of user. In the other plugin, it can 
detect if it needs to start dubbo or not if there is an annotation. This 
starter requires me to redundantly add an annotation. I want dubbo to feel just 
as easy as other frameworks, and least work possible.

Please change so instead of this:
```java
@EnableAutoConfiguration
@EnableDubbo
@Service(interfaceClass = Api.class)
public class Backend implements Api {
```

I can skip the `@EnableDubbo` like this:
```java
@EnableAutoConfiguration
@Service(interfaceClass = Api.class)
public class Backend implements Api {
```



[ Full content available at: 
https://github.com/apache/incubator-dubbo-spring-boot-project/issues/322 ]
This message was relayed via gitbox.apache.org for 
[email protected]

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to