All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.jeddict.template.service.producer.EntityManagerProducer.ftl Maven / Gradle / Ivy

Go to download

Jeddict is an open source Jakarta EE application development platform that accelerates developers productivity and simplifies development tasks of creating complex entity relationship models.

There is a newer version: 6.3.1
Show newest version
<#if package??>package ${package};

import jakarta.enterprise.inject.Produces;
import jakarta.enterprise.context.RequestScoped;
import jakarta.persistence.EntityManager;
import jakarta.persistence.PersistenceContext;

/**
 * Producer for injectable EntityManager
 *
 */
@RequestScoped
public class EntityManagerProducer {

    @PersistenceContext(unitName = "${PU}")
    private EntityManager em;

    @Produces
    public EntityManager getEntityManager(){
        return em;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy