• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

EJB Source code

 
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using the eclipse IDE and want to view the source code of the ejb.jar in my eclipse window. Where do i download the souce code for EJB from...

Like for the other java classes I have the rt.jar which contains the source code. What about EJB???

Cheers
Thomas
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you look at the javax.ejb package, you'll see that it consist just of interfaces and exceptions; there are no regular classes. The implementations of those interfaces are provided by the EJB server. If you have access to the source of the server, you can check it for classes that implement those interfaces, but most likely you won't get much of value out of those.
Why are you interested in the source, that is to say, what do you hope to get out of it?

When you say "rt.jar", do you really mean "src.zip"? rt.jar contains classes needed at runtime by the JVM, but no source code, while src.zip contains the source to the class libraries.
[ July 20, 2006: Message edited by: Ulf Dittmer ]
 
You may have just won ten million dollars! Or, maybe a tiny ad.
New web page for Paul's Rocket Mass Heaters movies
https://coderanch.com/t/785239/web-page-Paul-Rocket-Mass
reply
    Bookmark Topic Watch Topic
  • New Topic