Where can I find JavaEE packages' sources? [closed]

余生长醉 提交于 2019-11-28 12:02:21

Java EE is an abstract API. It exist of just contracts (as you see in javadocs), not concrete code. The application servers are the concrete implementations. So, if you're looking for the source, you should look at the application server vendor's homepage for a source code download link. However, you're unlucky with Weblogic. It is not open source. I've never used Weblogic (I am an open source fan), so I'm not sure if the source is provided along the Weblogic license, you might want to contact Weblogic support team.

Other servers, like Tomcat, Glassfish, JBoss AS, etc are open source. WebSphere AS has also a "Community Edition" which is open source. You could grab the javax.* API source code from any of them, but there is no guarantee that they are exactly the same as Weblogic uses. And still then, they do not provide the concrete Weblogic implementation code (like as the code in org.apache.*, com.sun.* and org.jboss.* packages in aforementioned open source servers).

Try in the default Maven repository; search for "javax.ejb", then download the source. That's quite often the easiest way, saving you from clicking through EULAs and the like.

That said, this source code is only good for plugging into an IDE to get source code completion — implementations are application-server specific (see Balusc answer).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!