![JAR search and dependency download from the Maven repository](/logo.png)
com.github.daniel.shuy.ws.rs.jpa.crud.ResourceCRUD Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jax-rs-jpa-crud Show documentation
Show all versions of jax-rs-jpa-crud Show documentation
Provides extendable classes to create JAX-RS CRUD Web Services tied to JPA entity classes
The newest version!
package com.github.daniel.shuy.ws.rs.jpa.crud;
import java.util.List;
import javax.transaction.Transactional;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
/**
* Extend this class to create a CRUD JAX-RS Repository Class.
*
* @param The Entity Class type
*/
public abstract class ResourceCRUD {
/**
* Override this method to provide a Repository instance.
*
* @return A Repository instance.
*/
public abstract RepositoryCRUD getRepository();
@POST
@Consumes({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Transactional
public void create(E content) {
getRepository().create(content);
}
@GET
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public List findAll() {
return getRepository().findAll();
}
@GET
@Path("{id}")
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public E find(@PathParam("id") Long id) {
return getRepository().find(id);
}
@GET
@Path("{from}/{to}")
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public List findRange(@PathParam("from") Long from, @PathParam("to") Long to) {
return getRepository().findRange(from, to);
}
@GET
@Path("count")
@Produces(MediaType.TEXT_PLAIN)
public String count() {
return String.valueOf(getRepository().count());
}
@PUT
@Consumes({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Transactional
public void edit(E content) {
getRepository().edit(content);
}
@DELETE
@Path("{id}")
@Transactional
public void remove(@PathParam("id") Long id) {
getRepository().remove(id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy