-
./gradlew run
-
make a call
-
get Introspection error but should be validation error
Request to test issue with
@Introspected
annotationcurl -X POST -H "Content-Type: application/json" -d '{ "valueNum": 42.42 }' http://localhost:8080/demo/form
-
./gradlew run
-
make a call
-
There should be no error but there is a validation error for
valueStrBlank
field
Request to test issue with
@Nullable
and @NotBlank
togethercurl -X POST -H "Content-Type: application/json" -d '{ "valueStr": "test" }' http://localhost:8080/demo/form-with-nullable-blank
-
./gradlew run
-
make a call
-
There should be no error but there is a validation error about required query parameter
Request to test issue with
@Nullable
and @QueryValue
on interfacecurl -X GET http://localhost:8080/demo/required-nullable-issue