service.ResourceRESTFacade.java Source code

Java tutorial

Introduction

Here is the source code for service.ResourceRESTFacade.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package service;

import javax.persistence.EntityManager;
import wersoft.defaultproject.model.entities.Resource;
import java.net.URI;
import java.util.List;
import javax.persistence.Query;
import javax.persistence.PersistenceContext;
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.Response;
import org.springframework.transaction.annotation.Transactional;

/**
 *
 * @author Will
 */
@Path("wersoft.defaultproject.model.entities.resource")
@com.sun.jersey.spi.resource.Singleton
@com.sun.jersey.api.spring.Autowire
public class ResourceRESTFacade {
    @PersistenceContext(unitName = "wersoft.defaultproject_ResDirectory_war_1.0-SNAPSHOTPU")
    protected EntityManager entityManager;

    public ResourceRESTFacade() {
    }

    @POST
    @Consumes({ "application/xml", "application/json" })
    @Transactional
    public Response create(Resource entity) {
        entityManager.persist(entity);
        return Response.created(URI.create(entity.getIdResource().toString())).build();
    }

    @PUT
    @Consumes({ "application/xml", "application/json" })
    @Transactional
    public void edit(Resource entity) {
        entityManager.merge(entity);
    }

    @DELETE
    @Path("{id}")
    @Transactional
    public void remove(@PathParam("id") Integer id) {
        Resource entity = entityManager.getReference(Resource.class, id);
        entityManager.remove(entity);
    }

    @GET
    @Path("{id}")
    @Produces({ "application/xml", "application/json" })
    @Transactional
    public Resource find(@PathParam("id") Integer id) {
        return entityManager.find(Resource.class, id);
    }

    @GET
    @Produces({ "application/xml", "application/json" })
    @Transactional
    public List<Resource> findAll() {
        return find(true, -1, -1);
    }

    @GET
    @Path("{max}/{first}")
    @Produces({ "application/xml", "application/json" })
    @Transactional
    public List<Resource> findRange(@PathParam("max") Integer max, @PathParam("first") Integer first) {
        return find(false, max, first);
    }

    @GET
    @Path("count")
    @Produces("text/plain")
    @Transactional
    public String count() {
        try {
            Query query = entityManager.createQuery("SELECT count(o) FROM Resource AS o");
            return query.getSingleResult().toString();
        } finally {
            entityManager.close();
        }
    }

    private List<Resource> find(boolean all, int maxResults, int firstResult) {
        try {
            Query query = entityManager.createQuery("SELECT object(o) FROM Resource AS o");
            if (!all) {
                query.setMaxResults(maxResults);
                query.setFirstResult(firstResult);
            }
            return query.getResultList();
        } finally {
            entityManager.close();
        }
    }

}