GH-1476, GH-1568 minor polishing of docs and binding display order

This commit is contained in:
Oleg Zhurakousky
2019-01-22 09:31:00 +01:00
parent 144627c435
commit 1624c431a7
2 changed files with 2 additions and 2 deletions

View File

@@ -1266,7 +1266,7 @@ To visualize the current bindings, access the following URL:
`http://<host>:<port>/actuator/bindings`
Alternative, to see a single binding, access one of the URLs similar to the following:
`http://<host>:<port>/actuator/bindings/myBindingName`
`http://<host>:<port>/actuator/bindings/<bindingName>`
You can also stop, start, pause, and resume individual bindings by posting to the same URL while providing a `state` argument as JSON, as shown in the following examples:

View File

@@ -40,7 +40,7 @@ import org.springframework.util.StringUtils;
*
* @see org.springframework.cloud.stream.annotation.EnableBinding
*/
@JsonPropertyOrder({ "name", "bindingName", "group", "pausable", "state"})
@JsonPropertyOrder({"bindingName", "name", "group", "pausable", "state"})
@JsonIgnoreProperties("running")
public class DefaultBinding<T> implements Binding<T> {