Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ejb3-persistence.jar source [closed]

Well, I must be brain-damaged, because I can't find the java source for Sun's persistence.jar or JBoss's ejb3-persistence.jar JPA package. They are open-source aren't they?

I looked all over the java.sun.com site as well as the GlassFish wiki, but came up empty.

I'd like a src.zip or folder like Sun delivers with Java JDKs.

Of course, I really don't have to have it, but I think it's fun to browse the source once in a while. And it helps me to debug my code sometimes.

like image 325
Randy Stegbauer Avatar asked Nov 21 '08 04:11

Randy Stegbauer


1 Answers

I just did a search on http://www.mvnrepository.com for persistence api

http://mirrors.ibiblio.org/pub/mirrors/maven2/javax/persistence/persistence-api/1.0/persistence-api-1.0-sources.jar

also available in the java.net maven 1 repository http://download.java.net/maven/1/javax.persistence/java-sources/

for the implementations see hibernate entity manager, openjpa, eclipse toplink, glassfish persistence, ...

like image 123
Somatik Avatar answered Sep 20 '22 02:09

Somatik