package algoLike.push; import java.util.*; import javax.ws.rs.*; import javax.ws.rs.client.*; import javax.ws.rs.core.*; import org.springframework.stereotype.Component; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.core.JsonProcessingException; @Path("/targetA") @Component public class TargetA { private int value; @PUT public void setTargetA(@FormParam("a") int a) { this.value = a; } @Produces(MediaType.APPLICATION_JSON) @GET public int getValue() { return value; } }