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
{{ message }}
This repository was archived by the owner on Mar 16, 2025. It is now read-only.
The processor uses the first tag to create the interface name. To create a valid java identifier it drops the - in test-api and the _ in test_api finally using TestApi as the interface name.
Hmm, looking at the code it is using the raw tag names (i.e. test-api) to collect the methods of an interface and the java identifier to generate the source file. It means that the first interface is probably lost because it gets overwritten by the second with the same name.
The fix (using the java identifier to select the target interface) will add both endpoints to the same interface.
If I use the following YAML:
The difference of the apis are the tag (test_api and test-api).
One api of the two is lost in the result. I had excepted, that I get...
But currently one api is lost.
The text was updated successfully, but these errors were encountered: