Hi,
When @DefaultValue is set, for example in @QueryParam:
@GET
public String getParam(@QueryParam("stringtest") @DefaultValue("abc") String stringheader){...}
does it mean that stringheader takes the @DefaultValue,
when it is not set
http://host:port/querytest
or when it is set with no value:
http://host:port/querytest?stringtest
or both?
Thanks.
Dianne