User Ran Biron - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T22:50:00Z http://stackoverflow.com/feeds/user/931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/434989/hashmap-intialization-parameters-load-initialcapacity 2 HashMap intialization parameters (load / initialcapacity) Ran Biron 2009-01-12T10:05:17Z 2009-11-25T15:02:39Z <p>What values should I pass to create an efficient HashMap / HashMap based structures for N items?</p> <p>In an ArrayList, the efficient number is N (N already assumes future grow). What should be the parameters for a HashMap? ((int)(N * 0.75d), 0.75d)? more? less? What is the effect of changing the load factor?</p> http://stackoverflow.com/questions/1792679/java-in-memory-on-the-fly-class-compilation-and-loading 1 java in-memory on-the-fly class compilation (and loading) Ran Biron 2009-11-24T20:22:01Z 2009-11-25T10:24:27Z <p>I want to revisit an old question of mine about in-memory "compilation" of classes. Since about 1/2 a year have passed since I asked (and was somewhat answered), I'd like to re-raise the issue and see if something new would come up (so no, I don't consider this a duplicate).</p> <p>The old question can be found here: <a href="http://stackoverflow.com/questions/616532/on-the-fly-in-memory-java-code-compilation-for-java-5-and-java-6">http://stackoverflow.com/questions/616532/on-the-fly-in-memory-java-code-compilation-for-java-5-and-java-6</a> - I suggest reading it (and the answers) before answering this question.</p> <p>I'm quite content with beanshell doing the heavy work of evaluating string of a java class to an actual Class object. However, beanshell has been standing on version 2.0b4 for ages now and its limitations (no constructor, not even default; no generics, no for-each, no enums...) are annoying.</p> <p>Reminder - this is to be used as a debugging interface, so performance considerations are negligible. However, I can't have server restarts, can't send class files to the location and JSPs are a very bad choice for me (I won't go into reasons here). Also, the end product must be a Class (or an Object of that class) so I could pass it around.</p> <p>Some limitations: I can't have a JDK, so no javax.tools.JavaCompiler. I can't have JSPs since I don't have tomcat or other "real" web container. Java 5 syntax support would be great, especially generics, enums and parameterization. Support for default constructors would be very nice.</p> <p>Any ideas?</p> <p>Edit 1: I just found out that there is a round-about way of having constructors in beanshell - however you have to declare them "public void XXX(){...}" instead of the usual way "public XXX(){...}".</p> http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven 0 How to turn off jar compression in Maven Ran Biron 2009-06-23T13:50:17Z 2009-11-20T18:20:32Z <p>Is there an option in Maven (2.0.9) to turn off jar compression for the entire operation? I'm using Maven both in the build server and in my work station and I'd like to disable jar compression on the work station builds (development only). However, I don't want to touch all the poms and create two versions for each.</p> <p>Is there an option for turning off jar compression by environment variable, file or by touching a single pom.xml?</p> http://stackoverflow.com/questions/1429172/list-files-inside-a-jar/1429233#1429233 1 Answer by Ran Biron for List files inside a jar Ran Biron 2009-09-15T19:39:46Z 2009-09-15T19:51:50Z <p>Here's a method I wrote for a "run all JUnits under a package". You should be able to adapt it to your needs.</p> <pre><code>private static void findClassesInJar(List&lt;String&gt; classFiles, String path) throws IOException { final String[] parts = path.split("\\Q.jar\\\\E"); if (parts.length == 2) { String jarFilename = parts[0] + ".jar"; String relativePath = parts[1].replace(File.separatorChar, '/'); JarFile jarFile = new JarFile(jarFilename); final Enumeration&lt;JarEntry&gt; entries = jarFile.entries(); while (entries.hasMoreElements()) { final JarEntry entry = entries.nextElement(); final String entryName = entry.getName(); if (entryName.startsWith(relativePath)) { classFiles.add(entryName.replace('/', File.separatorChar)); } } } } </code></pre> <p>Edit: Ah, in that case, you might want this snippet as well (same use case :) )</p> <pre><code>private static File findClassesDir(Class&lt;?&gt; clazz) { try { String path = clazz.getProtectionDomain().getCodeSource().getLocation().getFile(); final String codeSourcePath = URLDecoder.decode(path, "UTF-8"); final String thisClassPath = new File(codeSourcePath, clazz.getPackage().getName().repalce('.', File.separatorChar)); } catch (UnsupportedEncodingException e) { throw new AssertionError("impossible", e); } } </code></pre> http://stackoverflow.com/questions/616532/on-the-fly-in-memory-java-code-compilation-for-java-5-and-java-6 7 On-the-fly, in-memory java code compilation for Java 5 and Java 6 Ran Biron 2009-03-05T20:44:48Z 2009-08-03T01:43:06Z <p>How can I compile java code from an arbitrary string (in memory) in Java 5 and Java 6, load it and run a specific method on it (predefined)?</p> <p>Before you flame this, I looked over existing implementations:</p> <ul> <li>Most rely on Java 6 Compiler API.</li> <li>Those that don't, rely on tricks.</li> <li>Yes, I checked out commons-jci. Either I'm too dense to understand how it works, or it just doesn't.</li> <li>I could not find how to feed the compiler my current class path (which is quite huge).</li> <li>On the implementation that worked (in Java 6), I could not find how to correctly load inner classes (or inner anonymous classes).</li> <li>I'd quite like it if the entire thing was in-memory, as the thing runs on multiple environments.</li> </ul> <p>I'm sure this has been solved before, but I can't find anything that looks even half-production quality on google (except jci, which, as I've said before, I haven't managed to use).</p> <p>Edit: </p> <ul> <li>I looked over JavaAssist - I need inner classes, Java 5.0 language level support and compiling with the entire classpath. Also, I'd like to create new classes on the fly. I might be mistaken, but I couldn't find how to do this with JavaAssit.</li> <li>I'm willing to use a file-system based solution (calling javac) but I don't know how to divine the classpath, nor how to later load the files (which are not in my classpath) with a special classloader that can be recycled for multiple invocations. While I do know how to research it, I'd prefer a ready solution.</li> </ul> <p>Edit2: For now, I'm content with BeanShell "evaluate". Apparently it does everything I need it to (get a string, evaluate it in the context of the 'current' classpath. It does miss some of Java 5 features, but it can use enums (not define) and compiled 'generic' (erased) classes, so it should be enough for what I want.</p> <p><del>I don't want to mark the answer as accepted yet since I do hope for a better solution to come up.</del></p> <p>Edit3: Accepted the beanshell suggestion - it really works wonderfully.</p> http://stackoverflow.com/questions/1036967/jibx-bind-on-load-and-junit 0 JiBX "bind on load" and JUnit Ran Biron 2009-06-24T07:52:23Z 2009-06-24T07:52:23Z <p>Has anyone been successful in using JiBX "bind on load" mechanism while running a JUnit test case? What were the steps taken? How did you managed to use IDE test running integration with this solution?</p> http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032970#1032970 4 Answer by Ran Biron for How to turn off jar compression in Maven Ran Biron 2009-06-23T14:38:48Z 2009-06-23T14:38:48Z <p>Apparently it's possible by defining this:</p> <blockquote> <pre><code>&lt;profile&gt;&lt;id&gt;...&lt;/id&gt; &lt;build&gt; &lt;pluginManagement&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;configuration&gt; &lt;archive&gt; &lt;compress&gt;false&lt;/compress&gt; </code></pre> </blockquote> <p>...(close all tags)</p> <p>in the top-level pom.xml. As a side note - this didn't really solved my initial problem of the build taking too much time.</p> http://stackoverflow.com/questions/874301/jibx-integrate-base-class-output-into-extending-class-output 0 Jibx: Integrate base class output into extending class output Ran Biron 2009-05-17T10:16:32Z 2009-06-12T22:27:22Z <p>I have this class model:</p> <pre><code>abstract class A { int a; } class B extends A { int b; } class C extends B { int c; } </code></pre> <p>And I'd like to get jibx to output this XML:</p> <pre><code>&lt;B b=1 a=0&gt; &lt;children&gt; &lt;C c=2 b=1 a=0/&gt; &lt;/children&gt; &lt;/B&gt; </code></pre> <p>I have this binding xml:</p> <pre><code>&lt;binding&gt; &lt;mapping class="A" abstract="true"&gt; &lt;value name="a" field="a" style="attribute" usage="optional"/&gt; &lt;collection field="children" type="java.util.ArrayList"/&gt; &lt;/mapping&gt; &lt;mapping name="B" class="B" extends="A"&gt; &lt;value name="b" field="b" style="attribute" usage="optional"/&gt; &lt;structure map-as="A"/&gt; &lt;/mapping&gt; &lt;mapping name="C" class="C" extends="B"&gt; &lt;value name="c" field="c" style="attribute" usage="optional"/&gt; &lt;structure map-as="B"/&gt; &lt;/mapping&gt; &lt;/binding&gt; </code></pre> <p>However I keep getting artifacts like this:</p> <pre><code>&lt;C c=2&gt; &lt;B b=1 a=0&gt; &lt;children&gt; ... &lt;/children&gt; &lt;/B&gt; &lt;/C&gt; </code></pre> <p>As temporary solution I've changed my inheritance structure to have AbstractB and B extends AbstractB and C extends AbstractB, but it really annoys me to have to redesign my class because of jibx.</p> <p>Anyone knows how to solve this?</p> <p>Edit: As a bonus question - how do you use code/decode java.util.Map with Jibx? I know it can't be done natively (would be glad to be disproved!) but what would you do to code Map (no strings). Please note we're not using jibx-extras.jar, so solutions should not rely on it.</p> http://stackoverflow.com/questions/982263/jibx-how-do-i-keep-using-interfaces-in-my-code/984227#984227 0 Answer by Ran Biron for JiBX: How do I keep using interfaces in my code? Ran Biron 2009-06-11T23:04:04Z 2009-06-11T23:04:04Z <p>Another good resource is the binding.dtd - apparently it's not in the distribution but can be downloaded from here: <a href="http://jibx.cvs.sourceforge.net/viewvc/%2Acheckout%2A/jibx/core/docs/binding.dtd" rel="nofollow">http://jibx.cvs.sourceforge.net/viewvc/<em>checkout</em>/jibx/core/docs/binding.dtd</a>. Put this file somewhere (c:\binding.dtd for example). Then, in the top binding entry, use this:</p> <pre><code>&lt;binding xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file://jibx/binding.dtd"&gt; </code></pre> <p>and register file://jibx/binding.dtd to point to your saved binding.dtd for documentation and verification goodies.</p> <p>It's amazing what inertia does - I know that xml files should have schemas / dtds, I've used them before and always said "without a schema understanding this would've been impossible". Yet when I've entered this project, it never occurred to me to search for the schema / dtd for this xml - I just accepted it as given that it had none.<br /> Lesson learned.</p> http://stackoverflow.com/questions/982263/jibx-how-do-i-keep-using-interfaces-in-my-code 1 JiBX: How do I keep using interfaces in my code? Ran Biron 2009-06-11T16:48:01Z 2009-06-11T23:04:04Z <p>How can I keep my using interfaces in classes I want to use JiBX binding with?</p> <p>Example: I have this very simple model in java:</p> <pre><code>public interface A { B getB(); void setB(B b); } public interface B { String getData(); void setData(String data); } public class AImpl implements A { B b; @Override public B getB() { return b; } @Override public void setB(B b) { this.b = b; } } public class BImpl implements B { private String data; @Override public String getData() { return data; } @Override public void setData(String data) { this.data = data; } } </code></pre> <p>And this binding document: </p> <p>When I try to run my code I get this exception:</p> <blockquote> <p>java.lang.ClassFormatError: Method in class com/test/B has illegal modifiers: 0x1001</p> </blockquote> <p>I've tried to use 'abstract="true"' on both mapping, only to get this exception:</p> <blockquote> <p>...Caused by: org.jibx.runtime.JiBXException: Unable to access binding information for class com.test.A Make sure the binding has been compiled...</p> </blockquote> <p>The only solution I've found is to have AImpl hold a BImpl instead of a B, and have the getter return BImpl and the setter recieve BImpl. This is very wrong as it breaks the interface completely.</p> <p>How can I solve this? I've been pulling hairs out, having tantrums (the real issue is much more complex, and JiBX cryptic error messages don't help) - nothing help.</p> <p>Is this solvable? Is JiBX really that intrusive (in that it requires me to abandon all interface programming?)</p> <p>Please don't answer "use AbstractB" as it's the same problem, only one level removed.</p> http://stackoverflow.com/questions/968565/why-should-i-sign-my-jar-files/968612#968612 3 Answer by Ran Biron for Why should I sign my JAR files? Ran Biron 2009-06-09T07:14:08Z 2009-06-09T07:14:08Z <p>The short answer - don't, unless your company policy forces you to.</p> <p>The long answer<br /> Signing jars is effectively telling your customer "I made this, and I guarantee it won't mess up your system. If it does, come to me for retribution". This is why signed jars in client-side solution deployed from remote servers (applets / webstart) enjoy higher privileges than non-signed solutions do.</p> <p>On server-side solutions, where you don't have to to placate the JVM security demands, this guarantee is only for your customer peace of mind.<br /> The bad thing about signed jars is that they load slower than unsigned jars. How much slower? it's CPU-bound, but I've noticed more than a 100% increase in loading time. Also, patches are harder (you have to re-sign the jar), class-patches are impossible (all classes in a single package must have the same signature source) and splitting jars becomes a chore. Not to mention your build process is longer, and that proper certificates cost money (self-signed is next to useless).</p> <p>So, unless your company policy forces you to, don't sign jars on the server side, and keep common jars in signed and non-signed versions (signed go to the client-side deployment, non-signed go to server-side codebase).</p> http://stackoverflow.com/questions/944012/interesting-subjects-for-very-experienced-developers-java 8 Interesting subjects for very experienced developers (Java) Ran Biron 2009-06-03T10:19:54Z 2009-06-03T15:39:53Z <p>I was asked to mail a weekly "interesting subject" to my fellow developers (all very experienced) - a short summary (2-3 paragraphs), some "how is this relevant to us" information, and a link or two for further reading.</p> <p>Now, as I've said before, these are very experienced people - some more than me. I was thinking along lines of "why not to use finalize (multiple GCs)" and "how does reference compression works in 6u14" - what other subjects do you suggest?</p> http://stackoverflow.com/questions/920442/applet-or-webstart-application-calling-a-server-best-practices/920558#920558 1 Answer by Ran Biron for Applet (or WebStart application) calling a server : best practices ? Ran Biron 2009-05-28T12:16:02Z 2009-05-28T12:16:02Z <p>Protocol:</p> <p>If you don't care about interoperability with other languages, I'd go with RMI over HTTP. It has support right from the JRE, quite easy to setup and very easy to use once you have the framework.</p> <p>For applicative logic, I'd use either:</p> <ol> <li>The command pattern, passing objects that, when invoked, invoke methods on the server. This is good for small projects, but tends to over complicate as time goes by and more commands are added. Also, it require the client to be coupled to server logic.</li> <li>Request by name + DTO approach. This has the benefit of disassociating server logic from the client all together, leaving the server side free to change as needed. The overhead of building a supporting framework is a bit greater than the first option, but the separation of client from server is, in my opinion, worth the effort.</li> </ol> <p>Implementation:</p> <p>If you have not yet started, or you have and using Spring, then Spring remoting is a great tool. It works from everywhere (including applets) even if you don't use the IOC container.<br /> If you do not want to use Spring, the basic RMI is quite easy to use as well and has an abundance of examples over the web. </p> http://stackoverflow.com/questions/890254/sort-arraylist/890397#890397 0 Answer by Ran Biron for Sort ArrayList Ran Biron 2009-05-20T21:39:43Z 2009-05-20T21:39:43Z <p>There's a very nice natural order comparator here <a href="http://weblogs.java.net/blog/skelvin/archive/2006/01/natural%5Fstring.html" rel="nofollow">http://weblogs.java.net/blog/skelvin/archive/2006/01/natural_string.html</a></p> http://stackoverflow.com/questions/886509/array-list-questions/890208#890208 0 Answer by Ran Biron for Array/list questions Ran Biron 2009-05-20T20:55:06Z 2009-05-20T20:55:06Z <p>If you want to use lists, see one of the suggestions above me (personally I like Oli's best). You can improve performance by using the ArrayList constructor like this:</p> <pre><code>... = new ArrayList&lt;DocumentSummary&gt;( dtoDocuments.length * DISPLAY_ON_ACCESS_PREDICTION); </code></pre> <p>where DISPLAY_ON_ACCESS_PREDICTION is either:</p> <ul> <li>1 (int), if your result sets aren't huge and you don't care for a little extra memory being taken.</li> <li>A constant, based on your knowledge of the system.</li> <li>If performance is really important - a variable based on history (average, moving average, etc) or prediction (if you can make one ahead of time).</li> </ul> <p>Also, you could use the ArrayList.trimToSize() if the model is very big and memory is something you wish to conserve.</p> <p>If you want to stay with arrays, here are two suggestions:<br /> Suggestion 1, assuming getting the asking the indicator status is "slow" (time/resources consuming):</p> <pre><code>//... DocumentSummary[] domainDocuments = new DocumentSummary[dtoDocuments.length]; int skipped = 0; for (int count = 0; count &lt; domainDocuments.length; ++count) { if (doc.isDisplayOnAccessIndicator()) { DocumentSummary summary = new DocumentSummary(dtoDocuments[count], dateFormat); domainDocuments[count - skipped] = summary; } else { ++skipped; } } //trim the array DocumentSummary[] result = new DocumentSummary[count - skipped]; System.arrayCopy(domainDocuments, 0, result, 0, count - skipped); return result; </code></pre> <p>Suggestion 2, assuming getting the asking the indicator status is "fast" (time / low on resources):</p> <pre><code>int actualCount = 0; for (int count = 0; count &lt; domainDocuments.length; ++count) { if (doc.isDisplayOnAccessIndicator()) { ++actualCount; } else { ++skipped; } } DocumentSummary[] domainDocuments = new DocumentSummary[actualCount]; int skipped = 0; for (int count = 0; count &lt; domainDocuments.length; ++count) { if (doc.isDisplayOnAccessIndicator()) { DocumentSummary summary = new DocumentSummary(dtoDocuments[count], dateFormat); domainDocuments[count - skipped] = summary; } else { ++skipped; } } return domainDocuments; </code></pre> http://stackoverflow.com/questions/889551/progress-bars-mvc-in-java/890043#890043 2 Answer by Ran Biron for progress bars + MVC in Java = ??? Ran Biron 2009-05-20T20:24:44Z 2009-05-20T20:24:44Z <p>No (to 1) and NOOOO (to 2). At least in my opinion.</p> <p>No (to 1): First, DefaultBoundedRangeModel is a javax.swing class. In my opinion, these classes have no place in models. For example, think about the model living on the server, being accessed via RMI - All of the sudden putting a javax.swing class there seems "not right". However, the real problem is that you're giving a part of your model (the bounded model) to someone else, with no control over events fired or queries made.</p> <p>No (to 2): Ugh. Binding is fun but (at least in my opinion) should be used to synchronize between UI model and UI components, not between data model and UI model. Again, think what would happen if your data model lived on a remote server, accessed by RMI.</p> <p>So what? Well, this is only a suggestion, but I'd add an event listener interface and add the standard event listener subscription methods (addListner(...), removeListener(...)). I'd call these listeners from within my model when I have updates going on. Of course, I'd make sure to document the calling thread (or say it cannot be determined) in order for the client (the UI in this case) to be able to synchronize correctly (invokeLater and friends). Since the listener service will be exposed by the controller, this will allow the model to live anywhere (even allowing for listeners to be remotely invoked or pooled). Also, this would decouple the model from the UI, making it possible to build more models containing it (translators / decorators / depending models).</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/636360/finding-out-what-caused-equals-to-return-false 1 Finding out what caused equals() to return false Ran Biron 2009-03-11T21:03:29Z 2009-05-10T08:49:34Z <p>How can I find out what caused equals() to return false?</p> <p>I'm not asking about a sure-way, always right approach, but of something to aid in the development process. Currently I have to step into the equals() calls (usually a tree of them) until one of them is false, then step into it, ad nauseam.</p> <p>I thought about using the object graph, outputting it to xml and comparing the two objects. However, XMLEncoder requires default constructors, jibx requires pre-compilation, x-stream and simple api are not used in my project. I don't mind copying a single class, or even a package, into my test area and using it there, but importing a whole jar for this just isn't going to happen.</p> <p>I also thought about building an object graph traverser myself, and I might still do it, but I'd hate to start dealing with special cases (ordered collections, non-ordered collections, maps...)</p> <p>Any idea how to go about it?</p> <p>Edit: I know adding jars is the normal way of doing things. I know jars are reusable units. However, the bureaucracy needed (at my project) for this doesn't justify the results - I'd keep on debugging and stepping into.</p> http://stackoverflow.com/questions/593995/jibx-how-to-map-a-class-and-avoid-it-being-outputed-as-xml-node/835564#835564 0 Answer by Ran Biron for JibX: how to map a class and avoid it being outputed as XML node Ran Biron 2009-05-07T16:03:06Z 2009-05-07T16:03:06Z <p>It's also important that the base (abstract) <strong>does not</strong> have a name.</p> http://stackoverflow.com/questions/819321/how-important-are-grades-when-applying-for-a-job/819345#819345 6 Answer by Ran Biron for How important are grades when applying for a job? Ran Biron 2009-05-04T08:56:46Z 2009-05-04T08:56:46Z <p>In my experience, grades only matter at your first, directly-out-of-school job, and even then, they're secondary to your self-presentation skills and actual knowledge. The only way I saw grades in effect is the initial "should we summon this person for an interview" question.</p> <p>It's funny, but I actually saw the opposite to "common sense" happen - someone with exceptionally good grades was not summoned because he was "over qualified" for a starting position and (very much) under qualified for anything else.</p> <p>Of course, this is for a starting position at a "regular" software house. Algorithms-heavy development would, I imagine, keep a closer watch on grades.</p> <p>However(!), this does not mean that someone with very low grades (much below average) wouldn't be adversely affected by his/her grades - after all, it is the (almost) only datum if you have no real experience.</p> http://stackoverflow.com/questions/500637/understanding-the-need-for-a-di-framework/500715#500715 9 Answer by Ran Biron for Understanding the need for a DI framework Ran Biron 2009-02-01T12:24:16Z 2009-02-01T12:24:16Z <p>I've had the exact same question, and it was answered by this:<br /> Granted, you could do what you've described in "Then you could simply do:..." (let's call that "class A"). However, that would couple class A to HandSaw, or to all dependencies needed from class SawMill. Why should A be coupled to HandSaw - or, if you take a more realistic scenario, why should my business logic be coupled to the JDBC connection implementation needed for the DAO layer?<br /> The solution I proposed then was "then move the dependencies one step further" - ok, so now I've got my view coupled to JDBC connection, where I should only deal with HTML (or Swing, pick your flavor).</p> <p>The DI framework, configured by an XML (or JavaConfig) solves this by letting you just "get the needed service". You don't care how it's initialized, what it needs to work - you just get the service object and activate it.</p> <p>Also, you have a misconception there regarding the "plus:" (where you do 'SawMill springSawMill = (SawMill)context.getBean("sawMill"); springSawMill.run();') - you don't need to get the sawMill bean from the context - the sawMill bean should've been injected into your object (class A) by the DI framework. so instead of ...getBean(...), you'd just go "sawMill.run()", not caring where it came from, who initialized it and how. For all you care, it could go straight to /dev/null, or test output, or real CnC engine... The point is - you don't care. All you care is your tiny little class A which should do what it's contracted to do - activate a saw mill.</p> http://stackoverflow.com/questions/466878/can-you-get-basic-gc-stats-in-java/466931#466931 3 Answer by Ran Biron for Can you get basic GC stats in Java? Ran Biron 2009-01-21T20:51:12Z 2009-01-21T20:51:12Z <p>See <a href="http://java.sun.com/javase/6/docs/api/java/lang/management/GarbageCollectorMXBean.html" rel="nofollow">GarbageCollectorMXBean</a>.</p> http://stackoverflow.com/questions/464784/java-reentrantreadwritelocks-how-to-safely-acquire-write-lock/464829#464829 -1 Answer by Ran Biron for Java ReentrantReadWriteLocks - how to safely acquire write lock? Ran Biron 2009-01-21T10:59:18Z 2009-01-21T10:59:18Z <p>Use the "fair" flag on the ReentrantReadWriteLock. "fair" means that lock requests are served on first come, first served. You could experience performance depredation since when you'll issue a "write" request, all of the subsequent "read" requests will be locked, even if they could have been served while the pre-existing read locks are still locked.</p> http://stackoverflow.com/questions/451385/remove-uses-of-certain-java-classes-at-compile-time/451472#451472 0 Answer by Ran Biron for Remove uses of certain Java classes at compile time Ran Biron 2009-01-16T18:35:34Z 2009-01-16T18:35:34Z <p>Not exactly what you want but...<br /> You could separate your code to modules (core and debug, in your case), then make sure modules call each other via reflection: use an interface available in core, create a wrapper class in core that will hide object instantiation via reflection detail/ Then, on production, just omit the debug code and have the wrapper "do nothing" if the instantiation fail / when you set a specific flag.</p> <p>This way your debug classes won't make it into production and you won't have to "statically link" to them so your core production code won't care. Of course, this is only possible if your debug code has no side effects visible to core code, but it seems that's your case (from your problem description).</p> http://stackoverflow.com/questions/448179/organizing-actions-in-a-swing-application/448358#448358 1 Answer by Ran Biron for Organizing Actions in a Swing Application? Ran Biron 2009-01-15T20:34:27Z 2009-01-15T20:34:27Z <p>What I do is create a package (package tree actually) for action classes, then instantiate each class according to context. Almost all of my action classes are abstract with abstract methods to get the context (ala Spring).</p> <pre><code>public abstract class CalcAndShowAction extends AbstractAction { //initialization code - setup icons, label, key shortcuts but not context. public void actionPerformed(ActionEvent e) { //abstract method since it needs ui context String data = getDataToCalc(); //the actual action - implemented in this class, // along with any user interaction inherent to this action String result = calc(data); //abstract method since it needs ui context putResultInUI(result); } //abstract methods, static helpers, etc... } //actual usage //... button.setAction(new CalcAndShowAction() { String getDataToCalc() { return textField.getText(); } void putResultInUI(String result) { textField.setText(result); } }); //... </code></pre> <p>(sorry for any mistakes, I've written it by hand in this text box, not in an IDE).</p> http://stackoverflow.com/questions/447739/java-performance-testing/448318#448318 3 Answer by Ran Biron for Java Performance Testing Ran Biron 2009-01-15T20:23:44Z 2009-01-15T20:23:44Z <p>The code shown in the question is not a good performance measuring code: </p> <ol> <li><p>The compiler might choose to optimize your code by reordering statements. Yes, it can do that. That means your entire test might fail. It can even choose to inline the method under test and reorder the measuring statements into the now-inlined code.</p></li> <li><p>The hotspot might choose to reorder your statements, inline code, cache results, delay execution...</p></li> <li><p>Even assuming the compiler/hotspot didn't trick you, what you measure is "wall time". What you should be measuring is CPU time (unless you use OS resources and want to include these as well or you measure lock contestation in a multi-threaded environment).</p></li> </ol> <p>The solution? Use a real profiler. There are plenty around, both free profilers and demos / time-locked trials of commercials strength ones.</p> http://stackoverflow.com/questions/438508/how-to-securely-trigger-a-swing-action-in-a-restricted-applet/438805#438805 0 Answer by Ran Biron for How to securely trigger a Swing-Action in a restricted applet? Ran Biron 2009-01-13T12:35:14Z 2009-01-13T12:35:14Z <p>Short answer: you can't without signing the applet.</p> <p>Long answer: If you could without permissions, you could queue all kind of interesting messages. Your example, paste, or in long form: have access to something the client has copied before, is an action the client needs to know about and authorize. Think about a rouge applet monitoring the clipboard, "pasting" everything and sending it over the wire to a remote server. Your PIN for example.</p> <p>The solution is to sign your applet, thereby telling the client "It is in (your name here) responsibility that this applet is not evil." and asking the user if he/she believes you. If yes, the security manager will no longer block you. If not - well, the user distrusts you, why should the JVM do otherwise?</p> <p>See <a href="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/signed.html" rel="nofollow">http://java.sun.com/developer/onlineTraining/Programming/JDCBook/signed.html</a></p> http://stackoverflow.com/questions/433065/what-is-the-best-mechanism-for-testing-applets/433249#433249 0 Answer by Ran Biron for What is the best mechanism for testing applets? Ran Biron 2009-01-11T17:23:34Z 2009-01-11T17:23:34Z <p>We have had a big success testing applets using QuickTest Professional (<a href="http://en.wikipedia.org/wiki/HP_QuickTest_Professional" rel="nofollow">wikipedia link</a>). We tested the applet both in it's natural environment (browser) and using a specially built "cradle" which takes over the browser part and embed the applet in a JFrame (so we can test JavaScript input/output, start/stop, close the frame and look for leaks and activate generally hidden / forbidden interfaces).</p> <p>Disclosure: I'm a developer in HP which develops QuickTest Professional.</p> http://stackoverflow.com/questions/431044/how-to-make-full-screen-java-applets/431394#431394 2 Answer by Ran Biron for How to make full screen java applets? Ran Biron 2009-01-10T17:35:23Z 2009-01-10T17:35:23Z <p>Why not just open a new Frame from the applet (either from the "start()" method or, preferably, after the user presses an "open" button) and set it to be maximized?</p> <pre><code>JFrame frame = new JFrame(); //more initialization code here Dimension dim = Toolkit.getDefaultToolkit().getScreenSize(); frame.setSize(dim.width, dim.height); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); </code></pre> <p>Don't forget: The JFrame should be created and opened from the EDT. Applet start() is not guaranteed to be called on that thread, so use SwingUtilities.invokeLater(). Of course, if you opt for the button route, button listener is called on the EDT, so you should be safe.</p> http://stackoverflow.com/questions/377331/generating-code-stub-from-class-and-javadoc 1 Generating code stub from class and javadoc Ran Biron 2008-12-18T09:29:34Z 2008-12-22T12:45:58Z <p>Is anyone familiar with a tool that generates code stubs <em>with meaningful names</em> from class and javadoc?</p> <p>The real question should've been "I have classes without debug information and a matching javadoc, but my IntelliJ IDEA 8.0.1 (please, no IDE wars) doesn't take into account the javadoc and shows me "void setLocation(Object object, String str1, int i1, int i2);" instead of "void setLocation(Object component, String name, int x, int y);" - which makes a HUGE difference, both to auto-completion and ease of use". If this can be answered, I'd be satisfied as well.</p> http://stackoverflow.com/questions/321757/threadlocal-variables-in-a-servlet/374503#374503 0 Answer by Ran Biron for threadlocal variables in a servlet Ran Biron 2008-12-17T13:17:58Z 2008-12-17T13:17:58Z <p>Short answer: Yes.<br /> A bit longer one: This is how Spring does its magic. See <a href="http://www.docjar.com/html/api/org/springframework/web/context/request/RequestContextHolder.java.html" rel="nofollow">RequestContextHolder</a> (via DocJar).</p> <p>Caution is needed though - you have to know when to invalidate the ThreadLocal, how to defer to other threads and how (not) to get tangled with a non-threadlocal context.</p> <p>Or you could just use Spring...</p> http://stackoverflow.com/questions/1792679/java-in-memory-on-the-fly-class-compilation-and-loading/1793029#1793029 Comment by Ran Biron on java in-memory on-the-fly class compilation (and loading) Ran Biron 2009-11-26T11:16:53Z 2009-11-26T11:16:53Z Well, I did. It would require me to either: 1. depend directly on JDT, which is a problem for me (organization level) or 2. depend on jetty internals which are not guaranteed not to change. Thanks anyway http://stackoverflow.com/questions/1792679/java-in-memory-on-the-fly-class-compilation-and-loading/1795454#1795454 Comment by Ran Biron on java in-memory on-the-fly class compilation (and loading) Ran Biron 2009-11-25T11:26:20Z 2009-11-25T11:26:20Z @gustafc: yes, for the same reasons. http://stackoverflow.com/questions/1792679/java-in-memory-on-the-fly-class-compilation-and-loading/1792711#1792711 Comment by Ran Biron on java in-memory on-the-fly class compilation (and loading) Ran Biron 2009-11-25T09:54:48Z 2009-11-25T09:54:48Z No. Licensing issue. Also, the client can change the JRE my server is running with, so it's a compatibility issue as well. http://stackoverflow.com/questions/1792679/java-in-memory-on-the-fly-class-compilation-and-loading/1795454#1795454 Comment by Ran Biron on java in-memory on-the-fly class compilation (and loading) Ran Biron 2009-11-25T09:54:04Z 2009-11-25T09:54:04Z Has to be a Java string since thats what all of the developers here know. I want to write a &quot;plugin&quot; that will connect to a running server and help debug it (produce log message, query internal structures, etc). Forcing everyone to learn ruby would make this obsolete before it starts (no one would learn - no one would use it). http://stackoverflow.com/questions/1792679/java-in-memory-on-the-fly-class-compilation-and-loading/1793762#1793762 Comment by Ran Biron on java in-memory on-the-fly class compilation (and loading) Ran Biron 2009-11-25T09:52:47Z 2009-11-25T09:52:47Z Would look into it. Doesn't sound like a valid solution though - too much overhead. http://stackoverflow.com/questions/1792679/java-in-memory-on-the-fly-class-compilation-and-loading/1793029#1793029 Comment by Ran Biron on java in-memory on-the-fly class compilation (and loading) Ran Biron 2009-11-25T09:51:02Z 2009-11-25T09:51:02Z since I do use jetty, I might consider this. good call. http://stackoverflow.com/questions/434989/hashmap-intialization-parameters-load-initialcapacity/1080551#1080551 Comment by Ran Biron on HashMap intialization parameters (load / initialcapacity) Ran Biron 2009-07-05T12:39:16Z 2009-07-05T12:39:16Z Looks like a very nice tool - pity there's no trial version http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032970#1032970 Comment by Ran Biron on How to turn off jar compression in Maven Ran Biron 2009-06-28T06:55:07Z 2009-06-28T06:55:07Z 1. I provided the details, the original answerer provided the idea. 2. I think it's better to give &quot;accepted&quot; to another person for partial idea than to myself for a full idea. http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032753#1032753 Comment by Ran Biron on How to turn off jar compression in Maven Ran Biron 2009-06-25T13:06:54Z 2009-06-25T13:06:54Z I see I forgot to add the reason - I want to shorten the build time - I don't really care about the jars sizes :) http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032970#1032970 Comment by Ran Biron on How to turn off jar compression in Maven Ran Biron 2009-06-23T16:31:51Z 2009-06-23T16:31:51Z no idea - try and tell us :) http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032758#1032758 Comment by Ran Biron on How to turn off jar compression in Maven Ran Biron 2009-06-23T14:39:25Z 2009-06-23T14:39:25Z see my own answer for details. Thanks. http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032753#1032753 Comment by Ran Biron on How to turn off jar compression in Maven Ran Biron 2009-06-23T14:13:28Z 2009-06-23T14:13:28Z Hm. That might have come off a little too sharp - meant no offense. http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032753#1032753 Comment by Ran Biron on How to turn off jar compression in Maven Ran Biron 2009-06-23T14:12:14Z 2009-06-23T14:12:14Z yes, been there. I don't usually ask things I can find by a simple search. http://stackoverflow.com/questions/1032685/how-to-turn-off-jar-compression-in-maven/1032758#1032758 Comment by Ran Biron on How to turn off jar compression in Maven Ran Biron 2009-06-23T14:11:41Z 2009-06-23T14:11:41Z how? Can it be done in the top-level pom.xml? http://stackoverflow.com/questions/944012/interesting-subjects-for-very-experienced-developers-java/944039#944039 Comment by Ran Biron on Interesting subjects for very experienced developers (Java) Ran Biron 2009-06-23T14:00:30Z 2009-06-23T14:00:30Z Since I don't see any other answers coming - I'll accept this by majority vote.