[java][resttemplate] Fix missing javax validation imports with list validation (#18332)

* Fix java list validation

* Fix java list validation

* Fix java list validation

* Fix java list validation
This commit is contained in:
Horace Li
2024-05-22 08:07:42 +01:00
committed by GitHub
parent 1d96c770f9
commit d0a8726580
81 changed files with 2851 additions and 103 deletions

View File

@@ -0,0 +1,31 @@
openapi: 3.1.0
info:
title: issue-17485
version: 0.1.0
servers:
- url: http://api.example.xyz/v1
paths:
/user:
get:
parameters:
- description: The name of the user
explode: false
in: path
name: username
required: true
schema:
items:
pattern: "^[a-zA-Z0-9]$"
type: string
type: array
style: simple
responses:
"200":
description: OK
tags:
- user
x-accepts:
- application/json
components:
schemas: {}