Align message with regex for AbstractMvcEndpoint.path
Closes gh-6437
This commit is contained in:
parent
a1797879e6
commit
68fe8a58b8
|
|
@ -42,7 +42,7 @@ public abstract class AbstractMvcEndpoint extends WebMvcConfigurerAdapter
|
||||||
* Endpoint URL path.
|
* Endpoint URL path.
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
@Pattern(regexp = "/.*|^$", message = "Path must start with /")
|
@Pattern(regexp = "/.*|^$", message = "Path must start with / or be empty")
|
||||||
private String path;
|
private String path;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue