Hallo,

for 15min we have Problens in our errorlog

Caused by: java.lang.NoClassDefFoundError: Could not initialize class 
de.saas.core.base.EMF

our class EMF

package de.saas.core.base;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;

import de.saas.core.data.Data;

/**
 * Connect to Datastore
 */
public final class EMF {
        private static EntityManagerFactory emfInstance = 
Persistence.createEntityManagerFactory("transactions-optional"); //$NON-NLS-1$

        /**
         * @return EntityManager EMF
         */
        synchronized public static EntityManager createEntityManager() {
                return EMF.emfInstance.createEntityManager();
        }
}

there are problems with the datastore?

-Patrick


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/rvBfCIeRmyUJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to