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
#%RAML 1.0
title: Amazon S3 REST API
version: 1
baseUri: /v1/{somekey}
baseUriParameters:
somekey:
description: The name of the bucket
type: string
/common:
/list:
get:
Plugin generated following controller with 2.0.5 version -
@RestController
@Validated
@RequestMapping("/v1/{somekey}/common/list")
public interface ListController {
@RequestMapping(value = "", method = RequestMethod.GET)
public ResponseEntity<?> getObject(
@RequestHeader
HttpHeaders httpHeaders);
}
As seen in the method signature, it is missing the injection of somekey path variable.
The text was updated successfully, but these errors were encountered:
Given this RAML -
Plugin generated following controller with 2.0.5 version -
As seen in the method signature, it is missing the injection of
somekey
path variable.The text was updated successfully, but these errors were encountered: