jmnarloch / rxjava-spring-boot-starter

RxJava Spring MVC integration
Apache License 2.0
182 stars 46 forks source link

Fixing collision with netflix-core library. #11

Open ikamman opened 6 years ago

ikamman commented 6 years ago

The netflix-core uses the same name of the factory method for Single return type, even then when types got different canonical names. For factory methods spring use the method name strategy. The @RxJava will take place only for the same bean type.

mpazik commented 6 years ago

I just came across the same issue. Thanks @ikamman for creating the PR.

MrBurnsa commented 6 years ago

Thank you for this, @ikamman !