We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/area runtime
/area operator /area placement /area docs /area test-and-release
对应@SofaService和@Service/@Component的对应关系,是否应该有个@SofaBean对应Bean,以免去在配置类中重复写@Bean。
@SofaService
@Service
@Component
@SofaBean
@Bean
目前的写法
public class MultiSofaServiceConfiguration { @Bean("multiSofaService") @SofaService SampleService service() { return new DefaultSampleService(); } }
期望的写法:
public class MultiSofaServiceConfiguration { @SofaBean("multiSofaService") SampleService service() { return new DefaultSampleService(); } }
The text was updated successfully, but these errors were encountered:
May refer to sofa-rpc issue #1031
Sorry, something went wrong.
已支持 @SofaServiceBean 注解,同时包含了 @SofaServic 和 @ Component 的能力
No branches or pull requests
In what area(s)?
/area runtime
Describe the feature
对应
@SofaService
和@Service
/@Component
的对应关系,是否应该有个@SofaBean
对应Bean,以免去在配置类中重复写@Bean
。目前的写法
期望的写法:
The text was updated successfully, but these errors were encountered: