-
-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Description
Support could be provided for a @DateFormat annotation when adding QueryParams.
An example that is not compatible with this library: https://zenidas.wordpress.com/recipes/configurable-date-format-in-jax-rs-as-queryparam/
Usage example:
@Path("web/employee/:employeeId/contracts")
@GET ContractResponse getContracts(@PathParam("employeeId") int employeeId, @QueryParam("date") @DateFormat("yyyy-MM-dd") Date date);
should yield: "web/employee/1/contracts?date=2020-06-15" e.g.