-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Domino rest should not generate code for @GwtIncompatible #49
Comments
I would assume that Response int the sample above is from jakarta package and you want to avoid GWT compilation issue here. |
afaik oracle forbids names that contains java or javax and jakarta is the replacement. instead of javax.ws.rs:jsr311-api, javax.ws.rs:javax.ws.rs-api I use jakarta.ws.rs:jakarta.ws.rs-api. I want to avoid gwt compiling That's what I do with restygwt to share the rest api between the client and the server. For UserResource in the shared module I have a UserResourceImpl that implements UserResource thanks. |
Domino-rest generate the client for the JVM too, so if we dont generate from methods marked with |
I tried inserting the Feel free to close this issue. |
Domino rest should not generate code for
@GwtIncompatible
, so I can excludejaxrs-super
and usejakarta.ws.rs:jakarta.ws.rs-api
that containsjavax.ws.rs.core.Response
The text was updated successfully, but these errors were encountered: