Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Decompiling JSF library

843842Mar 3 2003 — edited Aug 23 2003
I found that having library source makes it much easier to comprehend the specification and the actual behavior of the JSF EA2 implementation.

If you share this feeling, you may find the following instructions helpful:

1) Download JODE from http://jode.sourceforge.net/

2) Run the following (all on one line) in the .../jsf10.ea2/lib directory

java -classpath .../jode-1.1.1.jar jode.decompiler.Main -c
jsf-ri.jar,commons-digester.jar,commons-logging.jar,
commons-beanutils.jar,jstl.jar,
.../jwsdp-1_0_01/common/lib/servlet.jar
jsf-api.jar > jsf-api.java

java -classpath .../jode-1.1.1.jar jode.decompiler.Main -c
jsf-api.jar,commons-digester.jar,commons-logging.jar,
commons-beanutils.jar,jstl.jar,
.../jwsdp-1_0_01/common/lib/servlet.jar
jsf-ri.jar > jsf-ri.java

Perhaps EA3 could contain the source to save us all this trouble?

Cheers,

Cay
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 20 2003
Added on Mar 3 2003
3 comments
247 views