User binil - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:17:49Z http://stackoverflow.com/feeds/user/3973 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850270/memory-effects-of-synchronization-in-java 5 Memory effects of synchronization in Java binil 2009-12-04T23:10:06Z 2009-12-10T23:10:19Z <p><a href="http://www.cs.umd.edu/users/pugh/java/memoryModel/jsr-133-faq.html#synchronization" rel="nofollow">JSR-133 FAQ</a> says:</p> <blockquote> <p>But there is more to synchronization than mutual exclusion. Synchronization ensures that memory writes by a thread before or during a synchronized block are made visible in a predictable manner to other threads which synchronize on the same monitor. After we exit a synchronized block, we release the monitor, which has the effect of flushing the cache to main memory, so that writes made by this thread can be visible to other threads. Before we can enter a synchronized block, we acquire the monitor, which has the effect of invalidating the local processor cache so that variables will be reloaded from main memory. We will then be able to see all of the writes made visible by the previous release.</p> </blockquote> <p>I also remember reading that on modern Sun VMs uncontended synchronizations are cheap. I am a little confused by this claim. Consider code like:</p> <pre><code>class Foo { int x = 1; int y = 1; .. synchronized (aLock) { x = x + 1; } } </code></pre> <p>Updates to x need the synchronization, but does the acquisition of the lock clear the value of y also from the cache? I can't imagine that to be the case, because if it were true, techniques like lock striping might not help. Alternatively can the JVM reliably analyze the code to ensure that y is not modified in another synchronized block using the same lock and hence not dump the value of y in cache when entering the synchronized block?</p> http://stackoverflow.com/questions/1875509/launching-a-process-and-waiting-for-a-condition-in-groovy-or-java 0 Launching a process and waiting for a condition in Groovy or Java binil 2009-12-09T17:28:30Z 2009-12-09T17:28:30Z <p>I need to write a Groovy script which launches a process, reads the processes out &amp; err streams, and wait for a particular line of text to be outputted. The wait should not be indefinite, but should time out after a while.</p> <p>This is what I came up with. Is there a better way?</p> <pre><code>def proc = "groovy test.groovy".execute(null, new File(".")) def timeout = 10 * 1000 printProcessOutput(proc, timeout) {line, count -&gt; false /* replace with evaluation of some actual condition */ } def printProcessOutput(proc, millis, condition) { def queue = new java.util.concurrent.LinkedBlockingQueue() def out = new StreamReader(new InputStreamReader(proc.inputStream), queue) def err = new StreamReader(new InputStreamReader(proc.errorStream), queue) def outThread = new Thread(out); outThread.start() def errThread = new Thread(err); errThread.start() def start = System.currentTimeMillis() def end = start def count = 0 while (end &lt; start + millis) { def line = queue.poll(10, java.util.concurrent.TimeUnit.MILLISECONDS) if (line) { println line count++ if (condition(line, count)) { break } } end = System.currentTimeMillis() } out.kill(); try { outThread.interrupt() } catch (ex) { } err.kill(); try { errThread.interrupt() } catch (ex) { } def temp = [] queue.drainTo(temp) temp.each { println "TEMP: $it" } } class StreamReader implements Runnable { final def reader final def queue volatile def killed = false public StreamReader(reader, queue) { this.reader = reader this.queue = queue } def void run() { def buff = new BufferedReader(reader) def line = buff.readLine() while (!killed &amp;&amp; line != null) { queue.offer(line) line = buff.readLine() } } def kill() { killed = true } } </code></pre> <p>test.groovy file is simply:</p> <pre><code>def rand = new Random() def delta = 5 * 60 * 1000 def start = System.currentTimeMillis() def end = start while (end &lt; start + delta) { if (rand.nextBoolean()) { System.err.println("ERR " + new Date()) } else { System.out.println("OUT " + new Date()) } Thread.sleep(100) end = System.currentTimeMillis() } println "Done" </code></pre> http://stackoverflow.com/questions/1621899/what-are-the-good-open-source-implementations-of-java-virtual-machine/1853030#1853030 1 Answer by binil for What are the good open source implementations of Java Virtual Machine ? binil 2009-12-05T18:38:24Z 2009-12-05T18:38:24Z <p>Here are two toy JVMs:</p> <ul> <li><a href="http://ruva.rubyforge.org/" rel="nofollow">Ruva</a> </li> <li><a href="http://www.codeproject.com/KB/cpp/jvm.aspx" rel="nofollow">from a codeproject article</a></li> </ul> http://stackoverflow.com/questions/1695796/where-to-put-the-validate-logic-in-service-or-repository/1695815#1695815 0 Answer by binil for where to put the validate logic? In Service or Repository? binil 2009-11-08T08:59:37Z 2009-11-08T08:59:37Z <p>Since you asked for opinions, here it is. :-) Put the validation logic at the lowest layer closest to the data. So in this case, the logic should be in the Repository. The Service can catch the Exception and translate it, if it wants to. But the criteria that "Accounts should be unique" is a feature of the Repository, IMO.</p> http://stackoverflow.com/questions/547242/how-to-direct-hibernate-logger-statements-in-different-log-files-for-differnet-ap/1695808#1695808 0 Answer by binil for How to direct hibernate logger statements in different log files for differnet applications using jboss-log4j.xml file binil 2009-11-08T08:53:10Z 2009-11-08T08:53:10Z <ol> <li>Adding an NDC. The logs still go to the same file, but the file will be lot easier to grep.</li> <li>Change the JBoss classloading such that each application can have its own log4j.xml</li> </ol> http://stackoverflow.com/questions/1677722/websphere-application-server-data-source/1695793#1695793 0 Answer by binil for Websphere Application Server Data Source binil 2009-11-08T08:39:43Z 2009-11-08T08:39:43Z <blockquote> <p>DSRA8101E: DataSource class cannot be used as one-phase: ClassCastException: {0} Explanation: The 'enable2Phase' property may only be set to false if the DataSource class implements ConnectionPoolDataSource. User Response: Set 'enable2Phase' to true for XADataSource or false for ConnectionPoolDataSource.</p> </blockquote> <p>Did you try setting the enable2Phase to false?</p> http://stackoverflow.com/questions/1652449/resources-for-game-artificial-intelligence/1693626#1693626 1 Answer by binil for Resources for Game Artificial Intelligence binil 2009-11-07T16:41:46Z 2009-11-07T16:41:46Z <p>While not an AI text, Schaeffer's <a href="http://rads.stackoverflow.com/amzn/click/0387765751" rel="nofollow">One Jump Ahead</a> is a great read to get an overview of the challenges. Schaeffer created a program that became the world champ in checkers, and the book describes the story of how he went about it.</p> http://stackoverflow.com/questions/1561543/hibernate-and-spring-persistance-problem-possible-identity-value-not-incremente/1563475#1563475 0 Answer by binil for hibernate and spring persistance problem. Possible identity value not incremented? binil 2009-10-13T23:16:33Z 2009-10-13T23:16:33Z <p>From the logs, it looks like hibernate inserts an object, then tries to update it, but it cannot find the object it just inserted. I am not sure, but it might be a problem with the id generator configured. Enable logging for level org.hibernate.type and check what values are bound to the prepared statement - it would give you a better idea on how to debug this.</p> http://stackoverflow.com/questions/1562687/suggestion-on-batch-processing-db-records/1563305#1563305 0 Answer by binil for suggestion on batch processing db records binil 2009-10-13T22:30:36Z 2009-10-13T22:30:36Z <p>Is there a reason why it should be synched only once in a week? If not, you might want to spread the operation over the week - do 1/7-th of the work every day. You can also consider adding a table in your side to keep track of which record was synched when.</p> http://stackoverflow.com/questions/1538222/why-not-to-use-springs-openentitymanagerinviewfilter/1549738#1549738 0 Answer by binil for Why not to use Spring's OpenEntityManagerInViewFilter binil 2009-10-11T03:07:26Z 2009-10-11T03:07:26Z <p>As you said, the OpenSessionInView filter is very convenient in web applications. Regarding the limitations you mentioned:</p> <blockquote> <p>1) Loading several lazy associations will result in multiple database transactions, a possible hit on performance.</p> </blockquote> <p>Yes, going to the DB often might lead to performance problems. Ideally you want to fetch all the data you need in one trip. Consider using Hibernate join-fetch for this. But fetching too much data from the DB will also be slow. The rule of thumb I use is to use join fetching if the data is needed every time I paint the view; if the data is not needed in most cases, I let Hibernate lazy fetch it when I need it - the threadlocal open session helps then.</p> <blockquote> <p>2) The root object and its lazy associations are loaded in different database transactions, so the data may possibly be stale (e.g. root loaded by thread 1, root associations updated by thread 2, root associations loaded by thread 1).</p> </blockquote> <p>Imagine writing this application in JDBC - if the application's consistency requirements demand that the root and leaves both should be loaded in the same txn, use join fetching. If not, which is often the case, lazy fetching won't lead to any consistency problems.</p> <p>IMHO, the more important disadvantage with OpenSessionInView is when you want your service layer to be reused in a non-web context. From your description, you don't seem to have that problem.</p> http://stackoverflow.com/questions/1016010/swing-gui-generator-for-xml 0 Swing GUI generator for XML binil 2009-06-19T01:34:05Z 2009-08-26T19:00:03Z <p>My application has an XML configuration file which users now edit in a text editor. I want to provide a (Swing) form for editing this configuration. I have a DTD for the XML, but the application does not accept all XML documents validated by the DTD i.e. the application imposes more restrictions than those in the DTD.</p> <p>I was about to start hacking to see how to go about doing this, but I thought I'd ask around for approaches others have used. Are there libraries out there which generates an editor, given a DTD? Any tips, ideas etc?</p> <p><strong>PS:</strong> My question is similar to <a href="http://stackoverflow.com/questions/983399/create-a-gui-from-a-xml-schema-automatically">this question</a> except that I need a Swing GUI.</p> http://stackoverflow.com/questions/1095372/jvm-calltree-snapshot-for-visualvm 0 JVM calltree snapshot for VisualVM binil 2009-07-07T23:32:54Z 2009-07-22T02:24:57Z <p>I am trying to use <a href="https://visualvm.dev.java.net/" rel="nofollow">VisualVM</a> to profile a Java (Sun JDK 1.6) standalone application. I have a scripted performance test environment, where I can run my application and get it to report some metrics I care about. </p> <p>Is there some way to get JVM to collect some CPU profiling snapshot which I can later analyze with VisualVM?</p> <p>I am looking for something similar to <code>-XX:+HeapDumpOnOutOfMemoryError</code> flag which writes a heap dump to disk just before an <code>OutOfMemoryError</code> is thrown.</p> http://stackoverflow.com/questions/339995/a-better-way-to-do-swing-applications/1015665#1015665 0 Answer by binil for A better way to do Swing Applications binil 2009-06-18T23:11:31Z 2009-06-18T23:11:31Z <p>If you like programming in Groovy instead of Java, check out Griffon: <a href="http://griffon.codehaus.org/" rel="nofollow">http://griffon.codehaus.org/</a></p> http://stackoverflow.com/questions/850198/java-client-server-communication 1 Java client-server communication binil 2009-05-11T21:34:17Z 2009-05-12T00:35:34Z <p>I have a Java application which is a long running process (lets call it a "server"). I have to write a desktop GUI (most likely in Swing), lets call it a "client", which can connect to this application and:</p> <ol> <li>display status updates from the application </li> <li>give specific "manually triggered" commands to the application</li> </ol> <p>Each interaction (conversation thread) between the client and the server would be short, but might involve a few messages up and down. What are the various options to implement something like this? Speed is not a huge concern for me; I am more interested in something where I can evolve the conversation protocol without being bogged down by the plumbing details. The options I have in mind now are sockets, RMI, JMS and JavaSpaces.</p> http://stackoverflow.com/questions/770525/how-to-comment-out-calls-to-a-specific-api-in-java-source-code 3 How to comment out calls to a specific API in Java source code binil 2009-04-20T23:50:50Z 2009-04-21T09:00:17Z <p>I want to comment out all calls to an API (java.util.Logging, in my case) in my codebase. Is there a good library to accomplish this easily? I tried Eclipse ASTParser, but that is tied to Eclipse. I am now struggling with PMD's parser. I haven't yet looked at it, but can Jackpot do this? Any other suggestions?</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/713901#713901 8 Answer by binil for What is the single most influential book every programmer should read? binil 2009-04-03T13:27:07Z 2009-04-03T13:27:07Z <p><strong>The Elements Of Computing Systems</strong></p> <p>This book walks the reader through the process of building a computer system given NAND gates and flip flops. It gives a good introduction to the "big picture".</p> <p><img src="http://mitpress.mit.edu/images/products/books/026214087X-medium.jpg" alt="The Elements Of Computing Systems" /></p> http://stackoverflow.com/questions/582391/installing-eclipse-3-4-plugins-in-a-directory-other-than-eclipsehome-plugins 3 Installing Eclipse (3.4+) plugins in a directory other than ECLIPSE_HOME/plugins binil 2009-02-24T16:13:29Z 2009-02-24T21:51:56Z <p>There <a href="http://blogs.quintor.nl/riwema/2008/02/03/install-your-eclipse-plugins-in-a-different-directory/" rel="nofollow">used</a> to be a way to do this, but I can no longer find this in Eclipse 3.4.1 installation I have. Does anyone know how to do this?</p> http://stackoverflow.com/questions/524081/bat-file-to-create-java-classpath 3 BAT file to create Java CLASSPATH binil 2009-02-07T16:36:37Z 2009-02-07T20:16:20Z <p>I want to distribute a command-line application written in Java on Windows. </p> <p>My application is distributed as a zip file, which has a lib directory entry which has the .jar files needed for invoking my main class. Currently, for Unix environments, I have a shell script which invokes the java command with a CLASSPATH created by appending all files in lib directory. </p> <p>How do I write a .BAT file with similar functionality? What is the equivalent of find Unix command in Windows world?</p> http://stackoverflow.com/questions/497893/resultset-xls 0 ResultSet -> XLS binil 2009-01-31T00:54:47Z 2009-01-31T13:04:27Z <p>I have to run few SQL queries and put the results into a spreadsheet. Since I am on a Spring/Java environment, I was about to run the queries using JDBC, iterate through the ResultSet, and use Jakarta POI to create a simple XLS.</p> <p>This looks like a very common requirement, so I was wondering if there is something already available - a package which given some SQL queries and a DataSource, can execute the queries and "export" their ResultSets into a spreadsheet. Does anyone know of such a package?</p> http://stackoverflow.com/questions/151100/how-can-i-serve-an-image-to-the-browser-using-struts-2-hibernate-3 1 How can I serve an image to the browser using Struts 2 + Hibernate 3? binil 2008-09-29T22:57:18Z 2009-01-30T14:35:53Z <p>I am developing a web application using Struts 2.1.2 and Hibernate 3.2.6.GA. I have an entity, User, which I have mapped to a table USERS in the DB using Hibernate. I want to have an image associated with this entity, which I plan to store as a BLOB in the DB. I also want to display the image on a webpage along with other attributes of the User.</p> <p>The solution I could think of was to have a table IMAGES(ID, IMAGE) where IMAGE is a BLOB column. USERS will have an FK column called IMAGEID, which points to the IMAGES table. I will then map a property on User entity, called 'imageId' mapped to this IMAGEID as a Long. When rendering the page with a JSP, I would add images as &lt;img src="images.action?id=1"/&gt; etc, and have an Action which reads the image and streams the content to the browser, with the headers set to cache the image for a long time.</p> <p>Will this work? Is there a better approach for rendering images stored in a DB? Is storing such images in the DB the right approach in the first place?</p> http://stackoverflow.com/questions/475764/java-library-for-converting-xml-to-syntax-colored-html 4 Java library for converting XML to syntax colored HTML binil 2009-01-24T09:02:26Z 2009-01-24T09:39:23Z <p>I have a Java string of XML content. I use Velocity to generate some HTML reports, and this XML needs to be included into one of those HTML files. It would be nice if this XML is syntax colored and formatted. Does anyone know of a Java library to do this?</p> http://stackoverflow.com/questions/37517/incomplete-information-card-game 4 Incomplete information card game binil 2008-09-01T06:15:01Z 2008-12-31T07:38:54Z <p>I would like to develop a <a href="http://en.wikipedia.org/wiki/Trick-taking_game" rel="nofollow">trick taking</a> card game. The game is between four players, one of which is a human and the other three hands are played by the computer.</p> <p>Where can I read up about developing the AI for such games?</p> http://stackoverflow.com/questions/262912/declarative-xml-pojo-conversion 1 Declarative XML -> POJO conversion binil 2008-11-04T18:48:28Z 2008-12-03T13:12:04Z <p>I have to write a process (in Java) which periodically hits a URL, reads the returned XML document, and persists that data into the DB. This data is further used by my application, so I have modeled them as Hibernate-mapped POJOs.</p> <p>I can parse the XML and then create appropriate POJOs, but I was looking for a simpler declarative approach. What libraries are available which can take a input configuration and create the POJOs from the XML document?</p> http://stackoverflow.com/questions/318250/preparing-a-development-tools-machine 2 Preparing a development tools machine binil 2008-11-25T17:43:44Z 2008-11-26T20:36:32Z <p>Hi,</p> <p>I am working on a small project with a few friends and need to set up a server to run our tools. I looked around at hosted solutions like <a href="http://unfuddle.com/" rel="nofollow">Unfuddle</a> but they don't provide a CI server.</p> <p>I am now considering buying a <a href="http://www.linode.com/" rel="nofollow">Linode</a> and running the following on it:</p> <ul> <li>Mail : <a href="http://james.apache.org/" rel="nofollow">Apache JAMES</a> </li> <li>CI : <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a> </li> <li>Wiki/Tracker : <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> </li> <li>Project Management: <a href="http://studios.thoughtworks.com/mingle-agile-project-management" rel="nofollow">Mingle</a> </li> <li>VCS : <a href="http://subversion.tigris.org/" rel="nofollow">SVN</a></li> </ul> <p>I am a Linux server newbie, so does anyone have any writeups, advice etc about this? I am aware of <a href="http://buildix.thoughtworks.com/" rel="nofollow">Buildix</a>, but they don't provide the combination I need. </p> http://stackoverflow.com/questions/161003/dynamic-breadcrumb-generation-how-to-do/169795#169795 0 Answer by binil for Dynamic breadcrumb generation - how to do? binil 2008-10-04T05:27:50Z 2008-10-04T05:27:50Z <p>Struts2 has a <a href="http://cwiki.apache.org/S2PLUGINS/breadcrumbs-plugin.html" rel="nofollow">breadcrumbs</a> plugin.</p> http://stackoverflow.com/questions/166322/obtain-current-svn-revision-in-webapp/169780#169780 0 Answer by binil for obtain current svn revision in webapp binil 2008-10-04T05:12:58Z 2008-10-04T05:12:58Z <p>Before the webapp is packaged, run svn info and redirect the output to some file in WEB-INF/classes. When the webapp starts up, parse this file and have it stashed away in the servlet context or some similar place. In the footer of every page, display this version - if you are using something like Tiles or SiteMesh, this change needs to be done only in one file.</p> <p>Maven users can try the maven-buildnumber plugin.</p> http://stackoverflow.com/questions/110430/how-do-you-organize-unit-tests/110443#110443 0 Answer by binil for how do you organize unit tests? binil 2008-09-21T07:05:11Z 2008-09-21T07:05:11Z <p>A testcase per check. If you name the method appropriately, it can provide valuable hint towards the problem when one of these tests cause a regression failure.</p> http://stackoverflow.com/questions/109746/update-a-backend-database-on-software-update-with-java/109921#109921 2 Answer by binil for Update a backend database on software update with Java binil 2008-09-21T01:16:25Z 2008-09-21T01:16:25Z <p>Check out <a href="http://www.liquibase.org/" rel="nofollow">Liquibase</a>. A database migrations tool, like <a href="http://code.google.com/p/dbmigrate/" rel="nofollow">dbmigrate</a>, might also be worth a lok.</p> http://stackoverflow.com/questions/103059/where-to-start-with-source-control/103110#103110 2 Answer by binil for Where to start with source-control binil 2008-09-19T15:47:56Z 2008-09-19T16:31:40Z <p>Get a copy of the book Pragmatic Version Control Using Subversion - it will help you get started.</p> <p><img src="http://ecx.images-amazon.com/images/I/51XYQTP2BYL._SL500_AA240_.jpg" alt="Image" /></p> http://stackoverflow.com/questions/102902/what-is-a-good-ci-build-process/103376#103376 1 Answer by binil for What is a good CI build-process binil 2008-09-19T16:17:46Z 2008-09-19T16:17:46Z <p>The later a bug is discovered, the costlier it is to fix. So bugs should be discovered as early as possible. This is the motivation behind CI.</p> <p>A good CI should ensure catching as many bugs as possible. The whole application comprises of code (often in multiple languages), Database schema, deployment files etc. Errors in any of these can cause bugs - so the CI should try to exercise as many of them as possible.</p> <p>CI does not replace a proper QA discipline. Also, CI need not be very comprehensive on day one of the project. One can start with a simple CI process that does basic compilation &amp; unit testing initially. As you discover more classes of bugs in QA, you should adapt the CI process to try to catch future occurrences of those bugs. It can also involve static code-analysis checks, so that you can implement consistent coding and design ideals across the codebase.</p> http://stackoverflow.com/questions/1850270/memory-effects-of-synchronization-in-java/1850440#1850440 Comment by binil on Memory effects of synchronization in Java binil 2009-12-07T23:16:28Z 2009-12-07T23:16:28Z @Cowan, so you are suggesting that by getting the monitor, the thread has to dump its cached copy of y? Or can the compiler notice that y is not read anywhere in the block for which the monitor was acquired, and hence not bother with the refresh? http://stackoverflow.com/questions/1850270/memory-effects-of-synchronization-in-java/1850440#1850440 Comment by binil on Memory effects of synchronization in Java binil 2009-12-05T01:24:45Z 2009-12-05T01:24:45Z ne0sonic, I think you have misunderstood the question. Please correct me if I am wrong. http://stackoverflow.com/questions/1636664/using-grails-gorm-standalone/1638298#1638298 Comment by binil on Using Grails GORM standalone binil 2009-11-25T22:38:45Z 2009-11-25T22:38:45Z Please also see the 'Using GORM outside of Grails' (<a href="http://grails.org/GORM+-+StandAlone+Gorm" rel="nofollow">grails.org/GORM+-+StandAlone+Gorm</a>) page on Grails Wiki. http://stackoverflow.com/questions/1408824/an-easy-way-to-support-tags-in-a-jekyll-blog/1424950#1424950 Comment by binil on An easy way to support tags in a jekyll blog binil 2009-11-17T23:11:50Z 2009-11-17T23:11:50Z The question was about adding tags to a Jekyll blog, not about how to go about implementing tags in an application. http://stackoverflow.com/questions/1666600/java-lang-noclassdeffounderror-proceedingjoinpoint Comment by binil on java.lang.NoClassDefFoundError: ProceedingJoinPoint binil 2009-11-08T09:18:34Z 2009-11-08T09:18:34Z How are you hooking up the LTW in Tomcat? http://stackoverflow.com/questions/1231133/how-to-write-content-into-pdf-use-itext Comment by binil on How to write content into pdf use iText ? binil 2009-11-08T09:05:50Z 2009-11-08T09:05:50Z In your program, wrap the lines of code which add the content in a for(int i = 0; i &lt; 100; i++) loop and try generating the PDF. If things are set up properly, you will notice that iText has created a multi-page PDF. http://stackoverflow.com/questions/547242/how-to-direct-hibernate-logger-statements-in-different-log-files-for-differnet-ap Comment by binil on How to direct hibernate logger statements in different log files for differnet applications using jboss-log4j.xml file binil 2009-11-08T08:51:28Z 2009-11-08T08:51:28Z To clarify the question: JBossAS uses log4j for its own logging, so an app deployed on the server cannot configure log4j for its own use (at least not easily, IIRC). The &quot;recommended&quot; approach is for all apps to add their logging configurations to jboss-log4j.xml. If two apps use hibernate, all org.hibernate category logs from either of them will go to the same appender. Milind wants them to go to different log files. http://stackoverflow.com/questions/1683276/hibernate-envers-throws-auditexception Comment by binil on Hibernate Envers throws AuditException binil 2009-11-08T08:11:32Z 2009-11-08T08:11:32Z I spend some time looking through the envers code and I don't think the problem is with the code you are trying to run. Instead, it looks like something is wrong in the way you have mapped the entities. Just a wild guess, but is entityA part of a deep class hierarchy? http://stackoverflow.com/questions/1380882/how-to-embed-hsql-in-file-with-spring-to-a-webapp/1381683#1381683 Comment by binil on How to embed HSQL in file with Spring to a WebApp binil 2009-10-11T03:10:39Z 2009-10-11T03:10:39Z Is the database file in src/main/resources? Also, do you expect to edit this db? http://stackoverflow.com/questions/1436830/validating-connection-before-handing-over-to-webapp-in-connectionpooling/1437320#1437320 Comment by binil on Validating Connection Before Handing over to WebApp in ConnectionPooling binil 2009-09-23T02:12:55Z 2009-09-23T02:12:55Z JDBC connections are pooled because it is expensive to create a new one. If your application is not used very frequently, why use connection pooling? You can create a new JDBC connection for every request! http://stackoverflow.com/questions/850198/java-client-server-communication/850269#850269 Comment by binil on Java client-server communication binil 2009-05-12T05:35:56Z 2009-05-12T05:35:56Z Thats right; I would prefer to describe the conversation as abstractly as possible. http://stackoverflow.com/questions/770525/how-to-comment-out-calls-to-a-specific-api-in-java-source-code/771694#771694 Comment by binil on How to comment out calls to a specific API in Java source code binil 2009-04-22T18:16:01Z 2009-04-22T18:16:01Z izb, I ended up using this solution. I used sed to make this change. Thanks for taking the time to write this solution up, instead of making useless, supposedly-humorous-but-lame, mysterious comments which does not add anything to the discussion at hand. :-) http://stackoverflow.com/questions/770525/how-to-comment-out-calls-to-a-specific-api-in-java-source-code/770554#770554 Comment by binil on How to comment out calls to a specific API in Java source code binil 2009-04-21T00:56:47Z 2009-04-21T00:56:47Z Thanks Bill, although that functionally achieves the same, that is not what I am after. I wanted to comment out the logger.log(..) calls so that the arguments are not evaluated. http://stackoverflow.com/questions/770525/how-to-comment-out-calls-to-a-specific-api-in-java-source-code/770539#770539 Comment by binil on How to comment out calls to a specific API in Java source code binil 2009-04-20T23:56:14Z 2009-04-20T23:56:14Z Show me a good regex to match multiline calls. :-) http://stackoverflow.com/questions/582391/installing-eclipse-3-4-plugins-in-a-directory-other-than-eclipsehome-plugins/582430#582430 Comment by binil on Installing Eclipse (3.4+) plugins in a directory other than ECLIPSE_HOME/plugins binil 2009-02-24T17:14:40Z 2009-02-24T17:14:40Z Thanks VonC! Using an external dropins directory configured in eclipse.ini will work for me. But it is strange that I can no longer use software updates if I want to manage my plugins outside of ECLIPSE_HOME.