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

org.example.CdiConfig Maven / Gradle / Ivy

The newest version!
package org.example;

import javax.enterprise.context.Dependent;
import javax.enterprise.inject.Produces;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

/**
 * @author Matti Tahvonen
 */
public class CdiConfig {

    @Produces
    @Dependent
    @PersistenceContext(unitName = "customerDB")
    private EntityManager entityManager;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy