I get exception "There is no default persistence unit in this deployment." can I somehow mark unit as default?(I have only one persistence unit, so Id rather not call it by name)

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

No, you have to call PU's by name.

link|improve this answer
You don't have to call a PU by name if you are injecting. – Archimedes Trajano Sep 6 '11 at 6:22
feedback

You are probably doing it through code rather than letting the container manage it. In which case you have to specify by name.

My unit test code has this code block to do this.

@Before
public void createEntityManagerFactory() throws IOException {
    final Properties p = new Properties();
    p.load(getClass().getResourceAsStream("/inmemory.properties"));
    emf = Persistence.createEntityManagerFactory("default", p);
}

However, my application code looks like this.

/**
 * Injected persistence context.
 */
@PersistenceContext
private EntityManager em;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown