- 
        Couldn't load subscription status. 
- Fork 474
Open
Description
Since version 1.4, path variables are resolved as empty strings instead of template variables in target field:
The link creation:
linkTo(methodOn(SelectColorResource.class)
                .selectColor(null, null))
                .withRel("select-color");
The SelectColorController
@PostMapping("/select-color)
    public RepresentationModel selectColor(
            @PathVariable ProductId productId,
            @Valid @RequestBody SelectColorRequest request) {
        ...
    }
Before 1.4:
{
"method":"POST",
"properties":[{"name":"reference","required":true,"type":"text"}],
"target":"http://localhost/products/{productId}/select-color"
}
Since 1.4:
{
"method":"POST",
"properties":[{"name":"reference","required":true,"type":"text"}],
"target":"http://localhost/products//select-color"
}