User binil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T20:17:49Zhttp://stackoverflow.com/feeds/user/3973http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1850270/memory-effects-of-synchronization-in-java5Memory effects of synchronization in Javabinil2009-12-04T23:10:06Z2009-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-java0Launching a process and waiting for a condition in Groovy or Javabinil2009-12-09T17:28:30Z2009-12-09T17:28:30Z
<p>I need to write a Groovy script which launches a process, reads the processes out & 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 ->
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 < 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 && 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 < 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#18530301Answer by binil for What are the good open source implementations of Java Virtual Machine ?binil2009-12-05T18:38:24Z2009-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#16958150Answer by binil for where to put the validate logic? In Service or Repository?binil2009-11-08T08:59:37Z2009-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#16958080Answer by binil for How to direct hibernate logger statements in different log files for differnet applications using jboss-log4j.xml file binil2009-11-08T08:53:10Z2009-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#16957930Answer by binil for Websphere Application Server Data Sourcebinil2009-11-08T08:39:43Z2009-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#16936261Answer by binil for Resources for Game Artificial Intelligencebinil2009-11-07T16:41:46Z2009-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#15634750Answer by binil for hibernate and spring persistance problem. Possible identity value not incremented?binil2009-10-13T23:16:33Z2009-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#15633050Answer by binil for suggestion on batch processing db recordsbinil2009-10-13T22:30:36Z2009-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#15497380Answer by binil for Why not to use Spring's OpenEntityManagerInViewFilterbinil2009-10-11T03:07:26Z2009-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-xml0Swing GUI generator for XMLbinil2009-06-19T01:34:05Z2009-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-visualvm0JVM calltree snapshot for VisualVMbinil2009-07-07T23:32:54Z2009-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#10156650Answer by binil for A better way to do Swing Applicationsbinil2009-06-18T23:11:31Z2009-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-communication1Java client-server communicationbinil2009-05-11T21:34:17Z2009-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-code3How to comment out calls to a specific API in Java source codebinil2009-04-20T23:50:50Z2009-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#7139018Answer by binil for What is the single most influential book every programmer should read?binil2009-04-03T13:27:07Z2009-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-plugins3Installing Eclipse (3.4+) plugins in a directory other than ECLIPSE_HOME/pluginsbinil2009-02-24T16:13:29Z2009-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-classpath3BAT file to create Java CLASSPATHbinil2009-02-07T16:36:37Z2009-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-xls0ResultSet -> XLSbinil2009-01-31T00:54:47Z2009-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-31How can I serve an image to the browser using Struts 2 + Hibernate 3?binil2008-09-29T22:57:18Z2009-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 <img src="images.action?id=1"/> 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-html4Java library for converting XML to syntax colored HTMLbinil2009-01-24T09:02:26Z2009-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-game4Incomplete information card gamebinil2008-09-01T06:15:01Z2008-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-conversion1Declarative XML -> POJO conversionbinil2008-11-04T18:48:28Z2008-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-machine2Preparing a development tools machinebinil2008-11-25T17:43:44Z2008-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#1697950Answer by binil for Dynamic breadcrumb generation - how to do?binil2008-10-04T05:27:50Z2008-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#1697800Answer by binil for obtain current svn revision in webappbinil2008-10-04T05:12:58Z2008-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#1104430Answer by binil for how do you organize unit tests?binil2008-09-21T07:05:11Z2008-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#1099212Answer by binil for Update a backend database on software update with Javabinil2008-09-21T01:16:25Z2008-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#1031102Answer by binil for Where to start with source-controlbinil2008-09-19T15:47:56Z2008-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#1033761Answer by binil for What is a good CI build-processbinil2008-09-19T16:17:46Z2008-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 & 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#1850440Comment by binil on Memory effects of synchronization in Javabinil2009-12-07T23:16:28Z2009-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#1850440Comment by binil on Memory effects of synchronization in Javabinil2009-12-05T01:24:45Z2009-12-05T01:24:45Zne0sonic, I think you have misunderstood the question. Please correct me if I am wrong.http://stackoverflow.com/questions/1636664/using-grails-gorm-standalone/1638298#1638298Comment by binil on Using Grails GORM standalonebinil2009-11-25T22:38:45Z2009-11-25T22:38:45ZPlease 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#1424950Comment by binil on An easy way to support tags in a jekyll blogbinil2009-11-17T23:11:50Z2009-11-17T23:11:50ZThe 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-proceedingjoinpointComment by binil on java.lang.NoClassDefFoundError: ProceedingJoinPointbinil2009-11-08T09:18:34Z2009-11-08T09:18:34ZHow are you hooking up the LTW in Tomcat?http://stackoverflow.com/questions/1231133/how-to-write-content-into-pdf-use-itextComment by binil on How to write content into pdf use iText ?binil2009-11-08T09:05:50Z2009-11-08T09:05:50ZIn your program, wrap the lines of code which add the content in a for(int i = 0; i < 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-apComment by binil on How to direct hibernate logger statements in different log files for differnet applications using jboss-log4j.xml file binil2009-11-08T08:51:28Z2009-11-08T08:51:28ZTo 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 "recommended" 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-auditexceptionComment by binil on Hibernate Envers throws AuditExceptionbinil2009-11-08T08:11:32Z2009-11-08T08:11:32ZI 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#1381683Comment by binil on How to embed HSQL in file with Spring to a WebApp binil2009-10-11T03:10:39Z2009-10-11T03:10:39ZIs 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#1437320Comment by binil on Validating Connection Before Handing over to WebApp in ConnectionPoolingbinil2009-09-23T02:12:55Z2009-09-23T02:12:55ZJDBC 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#850269Comment by binil on Java client-server communicationbinil2009-05-12T05:35:56Z2009-05-12T05:35:56ZThats 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#771694Comment by binil on How to comment out calls to a specific API in Java source codebinil2009-04-22T18:16:01Z2009-04-22T18:16:01Zizb, 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#770554Comment by binil on How to comment out calls to a specific API in Java source codebinil2009-04-21T00:56:47Z2009-04-21T00:56:47ZThanks 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#770539Comment by binil on How to comment out calls to a specific API in Java source codebinil2009-04-20T23:56:14Z2009-04-20T23:56:14ZShow 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#582430Comment by binil on Installing Eclipse (3.4+) plugins in a directory other than ECLIPSE_HOME/pluginsbinil2009-02-24T17:14:40Z2009-02-24T17:14:40ZThanks 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.