Sanju Thomas
Sanju Thomas

Reputation: 241

Spring boot actuator optional parameter with default value

Is there an alternative to this:

@RequestParam(required = false, defaultValue = "NA") in actuator 
@WriteOperation request body/query param?

Upvotes: 1

Views: 1248

Answers (1)

Sanju Thomas
Sanju Thomas

Reputation: 241

We should be able to make the request params optional using org.springframework.lang.Nullable annotation.

Upvotes: 3

Related Questions