when I try to pass a JSON-String using POST to my Jersey REST-Service, the REST client returns 415 - Unsupported Media Type. Querying the resource via GET works fine.
Entity class:
@Entity
public class Agent implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
public Agent() {
}
public Agent(String name) {
this.name = name;
}
@OneToMany(mappedBy = "agent", cascade = CascadeType.PERSIST)
@JsonBackReference
private List<Action> actions = new ArrayList<>();
//...getter / setter...
}
Service class for REST:
@Path("/agents")
public class AgentService {
private static PersistenceFacade f = new PersistenceFacade();
private static StatusFacade s = new StatusFacade();
//GET all Agents
@GET
@Produces(MediaType.APPLICATION_JSON)
public List<Agent> getAllAgents() {
return f.getAllAgents();
}
@POST
@Path("/create")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public void postAgent(Agent a) {
f.createAgent(a);
}
}
PersistenceFacade
public class PersistenceFacade {
//EMF als zentraler Handler für alle EM
private static EntityManagerFactory factory = Persistence.createEntityManagerFactory("simulationPU");
public void createAgent(Agent a) {
EntityManager em = factory.createEntityManager();
EntityTransaction tx = em.getTransaction();
tx.begin();
em.persist(a);
tx.commit();
}
public List<Agent> getAllAgents() {
EntityManager em = factory.createEntityManager();
Query q = em.createQuery("SELECT a FROM Agent a");
List<Agent> aList = q.getResultList();
return aList;
}
Passing GET-Request to http://localhost:8080/simulation_api/agents returns my testdata:
[{"id":2104,"name":"pi3"},{"id":2107,"name":"pi4"}]
But when I try to pass a JSON-String to http://localhost:8080/simulation_api/agents/create with POST, error occurs as mentioned above(HTTP Response 415). I put inside the request body:
{"id":2804,"name":"pi7"}
What might be the problem? No exception is thrown...