-
1. Re: Java Heap space and No Html generation for source folder
jesper.pedersen Mar 25, 2009 1:22 PM (in response to fatboysuns)JBoss Tattletale works on JAR files - so you need to package all your .class files up.
Then run Tattletale on your JAR files + the lib directory, I guess.
In short: put all JAR files in a directory and point Tattletale to that.
HTH -
2. Re: Java Heap space and No Html generation for source folder
fatboysuns Mar 25, 2009 2:10 PM (in response to fatboysuns)I still get the "Java heap space" error. My jar is 1015 KB only and it contains just my classes. My lib is 123 MB. Is there a way I can setup logging to know what exactly could be wrong. Am surprised that a machine with 2 gigs isnt good enough.
-
3. Re: Java Heap space and No Html generation for source folder
jesper.pedersen Mar 25, 2009 2:19 PM (in response to fatboysuns)Have you tried
java -Xmx1024m -jar jboss-tattletale.jar /path/to/directory output
?
What do you mean by "My lib is 123MB" ? Not a single JAR file, I hope... -
4. Re: Java Heap space and No Html generation for source folder
fatboysuns Mar 25, 2009 2:39 PM (in response to fatboysuns)There you go. THE OUTPUT IS BRILLIANT. I should have thought abt that! Thanks. When talking about the lib, I meant the lib folder which contains all my external jars referenced by the app.
I have another question, Jar are hyperlinked and classes arent. Is there a way that can point me to where these classes are referenced from? As in, Could the references just be to the jars and when I click on it, it should tell me what classes in the jars are being referred to etc? -
5. Re: Java Heap space and No Html generation for source folder
jesper.pedersen Mar 25, 2009 2:53 PM (in response to fatboysuns)1.0.Beta2 records inter-archive dependencies.
1.0.Beta3 will record inter-package dependencies -- needed for the OSGi report.
I think you are talking about inter-class dependencies, right ?
If you mean class->JAR file links -- the problem here is that the same .class file can be in multiple JAR files. See the "Multiple Locations" report.
If you just need an overview of where the .class is - see the "Class Location" report. -
6. Re: Java Heap space and No Html generation for source folder
fatboysuns Mar 25, 2009 2:57 PM (in response to fatboysuns)Yup that was great. Was wondering if that could be interwoven somehow. I like all the reports seen especially the multiple ones. Thanks for the tool
-
7. Re: Java Heap space and No Html generation for source folder
jesper.pedersen Mar 25, 2009 2:58 PM (in response to fatboysuns)and btw - thanks for the feedback :)
Feel free to blog, tell your friends/co-workers, ... - basically everybody you know about the tool ;)
Our website is up now http://www.jboss.org/tattletale -
8. Re: Java Heap space and No Html generation for source folder
fatboysuns Mar 25, 2009 3:01 PM (in response to fatboysuns)Sure, will do.