You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently annotation processing is tightly coupled in a few classes. This will cause maintenance problem down the road and makes it impossible to plug-in a third party annotation processor.
The proposal is to modularize annotation processing and have a unified interface for annotation processor:
Built-in annotation processors will automatically register with Ribbon. For third party annotation processors, we use the JDK ServiceLoader to find the implementations of this interface on current thread's context class loader.
The text was updated successfully, but these errors were encountered:
Currently annotation processing is tightly coupled in a few classes. This will cause maintenance problem down the road and makes it impossible to plug-in a third party annotation processor.
The proposal is to modularize annotation processing and have a unified interface for annotation processor:
Built-in annotation processors will automatically register with Ribbon. For third party annotation processors, we use the JDK ServiceLoader to find the implementations of this interface on current thread's context class loader.
The text was updated successfully, but these errors were encountered: