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 has been archived by the owner on Feb 12, 2022. It is now read-only.
I was expecting @Path("/v1/user") instead it created without version in path @Path("/user")
Even 'baseUri' is ignored.
It would be difficult if RAML provider changes the api version to v2. Suggestions please.
output:
@Path("/user")
public interface User {
/**
*/
@POST
@Path("/activation")
@Consumes("application/json")
PostUserActivationResponse postUserActivation(
@NotNull @Valid UserActivationPostApplicationJson entity);
class PostUserActivationResponse extends ResponseDelegate {....}
The version field is current only for documentation purposes, as it is not uniform to have the version in the URL (I for one prefer to have in the content-type, for example). I'm currently working on 4.0, and will keep in mind a plugin for this purpose.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
'version' is not appending in jax-rs generated classes @path
my raml file, rename it to .raml
https://github.com/mulesoft-labs/raml-for-jax-rs/files/4598660/api.txt
I was expecting
@Path("/v1/user")
instead it created without version in path@Path("/user")
Even 'baseUri' is ignored.
It would be difficult if RAML provider changes the api version to v2. Suggestions please.
output:
pom.xml
The text was updated successfully, but these errors were encountered: