Create structured archive with files in java

I want to implement GET api that returns ZIP file. I defined api using openapi openapi: 3.0.1 info: title: xxx description: xxx version: 2.0.0 tags: – name: xxxx servers: – url: /cc/api/v3 paths: /path/{param}: get: tags: – xxxx operationId: getMyZip responses: 200: description: file with zipped reports content: application/octet-stream: schema: type: string format: binary security:… Read More Create structured archive with files in java