Changes

Jax-rs 2.0

216 bytes added, 17:48, 16 February 2019
Megvalósítás
Használata:
<source lang="java">
@GET
@Path("/contract")
public Contract getContract() {
try {
Contract contract = new Contract();
} catch (Exception e) {
throw new WebServiceException(...., e.getMessage(), e);
} return contract; }
</source>