io.github.itroadlabs.apicross.springmvc.templates.requestsHandlerMethodQueryStringParameters.hbs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicross-springmvc Show documentation
Show all versions of apicross-springmvc Show documentation
Spring Web MVC code generator
The newest version!
{{#each queryParameters}}
{{#with type}}
@RequestParam(
name="{{{../name}}}",
required={{../required}}
{{#unless ../required}}
{{#if defaultValue}}
{{#if primitive}}
, defaultValue = "{{{defaultValue}}}"
{{/if}}
{{/if}}
{{/unless}}
) {{> typeWithoutListConstraints}} {{../resolvedName}} ,
{{/with}}
{{/each}}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy