User Martin OConnor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T18:48:38Zhttp://stackoverflow.com/feeds/user/18233http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808141/synchronizing-on-two-or-more-objects-java/1808184#18081842Answer by Martin OConnor for Synchronizing on two or more objects (Java)Martin OConnor2009-11-27T11:21:13Z2009-11-27T11:21:13Z<p>You don't usually synchronize on the fields you want to control access to directly.
The fields that you want to synchronize access to must only be accessed from within synchronized blocks (on the same object) to be considered thread safe. You are already doing this in <code>putInCache()</code>.
Therefore, because <code>checkFreeSpace()</code> accesses shared state in an unsynchronized fashion, it is not thread safe.</p>
http://stackoverflow.com/questions/110641/how-do-you-code-the-hello-world-program-in-your-favourite-language/110776#1107760Answer by Martin OConnor for How do you code the "Hello World!" program in your favourite language?Martin OConnor2008-09-21T11:07:01Z2009-11-23T07:25:58Z<p>Java:</p>
<pre><code>class HelloWorld {
public static void main (String[] args) {
System.out.println("Hello World");
}
}
</code></pre>
http://stackoverflow.com/questions/1700212/how-to-force-a-java-thread-to-close-a-thread-local-database-connection/1707135#17071351Answer by Martin OConnor for How to force a Java thread to close a thread-local database connectionMartin OConnor2009-11-10T10:59:49Z2009-11-10T15:25:46Z<p>Override the get() method in ThreaedLocal so that it sets a List property on the subclass.
This property can easily be queried to determine if the get() method had been called for a particular thread. You could then access the ThreadLocal to clean it up in that case.</p>
<p><strong>Updated in response to comment</strong></p>
http://stackoverflow.com/questions/1486647/using-java-webservice-in-net/1486707#14867071Answer by Martin OConnor for Using Java Webservice in .NETMartin OConnor2009-09-28T12:08:29Z2009-09-28T12:08:29Z<pre><code><message name="EbmsRequestMsg">
<part name="messageId" type="s:string" />
</message>
<message name="EbmsResponseMsg">
<part name="hasMessage" type="s:string" />
</code></pre>
<p>These must refer to element declarations and not raw simple types. You need to create an element wrapper containing a string simple type.</p>
http://stackoverflow.com/questions/1485987/log4j-properties-file-where-to-put-it/1485995#14859952Answer by Martin OConnor for Log4J properties file - where to put itMartin OConnor2009-09-28T08:36:03Z2009-09-28T11:55:11Z<p>The file should be located in the WEB-INF/classes directory.
This directory structure should be packaged within the war file. </p>
http://stackoverflow.com/questions/1476238/why-illegalargumentexception-jdk-1-4-2-cannot-be-constructed-with-a-throwable-c/1476270#14762700Answer by Martin OConnor for Why IllegalArgumentException (JDK 1.4.2) cannot be constructed with a throwable cause ?Martin OConnor2009-09-25T09:11:37Z2009-09-25T09:11:37Z<p>Prior to Java SE 5, IllegalArgumentException did not accept a Throwable cause.
In Java SE 5 and later, it does.</p>
http://stackoverflow.com/questions/1460001/can-java-annotations-help-me-with-this/1460038#14600382Answer by Martin OConnor for Can Java Annotations help me with this?Martin OConnor2009-09-22T13:15:52Z2009-09-22T13:15:52Z<p>AOP does this with what are known as pointcuts
AspectJ might have what you need.</p>
<p>Simplistically speaking, you would add before advice to your foo() method which would call init() </p>
http://stackoverflow.com/questions/1398423/how-to-unit-test-logic-in-jsp/1398465#13984651Answer by Martin OConnor for How to unit-test logic in jsp?Martin OConnor2009-09-09T09:06:32Z2009-09-09T09:06:32Z<p>Try <a href="http://jsptest.sf.net" rel="nofollow">JspTest</a>. Use it for testing the view logic in a JSP page.</p>
http://stackoverflow.com/questions/1386522/javas-setpreferredsize-wont-resize-jpanel/1386632#13866321Answer by Martin OConnor for Java's setPreferredSize won't resize JPanel Martin OConnor2009-09-06T20:24:13Z2009-09-06T20:24:13Z<p>setPreferredSize is one of many hints you can give to the LayoutManager which is managing the layout of your component's container if indeed a LayoutManager has been set. It is up to the given LayoutManager what it does with those hints.</p>
<p>I suggest you check out the book <a href="http://filthyrichclients.org/" rel="nofollow">Filthy Rich Clients</a> for an in-depth explanation of how the Swing component rendering works.</p>
http://stackoverflow.com/questions/1213374/randomaccessfiles-dont-close-until-application-exit/1213398#12133984Answer by Martin OConnor for RandomAccessFiles don't close until application exit.Martin OConnor2009-07-31T16:01:33Z2009-07-31T16:27:35Z<p>You want to make sure that your close is inside a finally block like this</p>
<pre><code>RandomAccesFile raf = null;
try {
raf = new RandomAccessFile(f);
//do stuff
} finally {
if (raf != null) {
raf.close();
}
}
</code></pre>
<p>Otherwise an exception can cause close() never to be executed.</p>
http://stackoverflow.com/questions/1158307/jboss-how-to-generate-a-web-service-from-a-wsdl/1158339#11583390Answer by Martin OConnor for JBoss: How to generate a Web Service FROM a WSDL?Martin OConnor2009-07-21T10:15:30Z2009-07-21T10:15:30Z<p>Have a look at <a href="http://ws.apache.org/axis2" rel="nofollow">Axis2</a>. </p>
http://stackoverflow.com/questions/877965/how-can-i-repaint-efficiently-when-using-big-custom-component-in-swing/878048#8780485Answer by Martin OConnor for How can I repaint efficiently when using big custom component in Swing?Martin OConnor2009-05-18T14:29:56Z2009-05-18T14:29:56Z<p>Check out <a href="http://filthyrichclients.org/" rel="nofollow">Filthy Rich Clients</a> by Chet Haase and Romain Guy. They address these very optimizations among others along the way to producing responsive and graphically impressive UI.</p>
http://stackoverflow.com/questions/854021/replacing-a-document-body-on-the-iphone1Replacing a document body on the iPhoneMartin OConnor2009-05-12T17:59:56Z2009-05-15T14:54:12Z
<p>I need to be able to replace the entire document content with a response obtained from an ajax request.</p>
<p>I have tried assigning to <code>document.body.innerHTML</code> and also tried using <code>document.write()</code>.
While both of these are functional on desktop Safari, I need a solution for the iPhone/iPod Touch. Attempting to modify <code>document.body.innerHTML</code> produces exception 7 and the <code>document.write()</code> function is undefined on mobile safari.</p>
<p>I am essentially displaying an activity indicator while waiting for a form post to complete. I do not want safari to begin rendering the response until it completes in it's entirety as it could take some time to complete.</p>
http://stackoverflow.com/questions/847246/what-is-the-best-way-to-ping-a-database-via-jdbc/847308#8473082Answer by Martin OConnor for What is the best way to 'ping' a database via JDBC?Martin OConnor2009-05-11T09:10:06Z2009-05-11T09:10:06Z<p>Simply issuing the following query should be sufficient</p>
<pre><code>SELECT 1
</code></pre>
http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785114#7851146Answer by Martin OConnor for Consistency of hashCode() on a Java stringMartin OConnor2009-04-24T09:16:12Z2009-04-24T11:10:34Z<p>You should not rely on a hash code being equal to a specific value. Just that it will return consistent results within the same execution.
The API docs say the following :</p>
<blockquote>
<p>The general contract of hashCode is:</p>
<ul>
<li>Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.</li>
</ul>
</blockquote>
<p><strong>EDIT</strong>
Since the javadoc for String.hashCode() specifies how a String's hash code is computed, any violation of this would violate the public API specification.</p>
http://stackoverflow.com/questions/594597/hibernate-annotations-which-is-better-field-or-property-access1Hibernate Annotations - Which is better, field or property access?Martin OConnor2009-02-27T12:44:48Z2009-04-23T12:16:29Z
<p>This question is somewhat related to <a href="http://stackoverflow.com/questions/305880/hibernate-annotation-placement-question">http://stackoverflow.com/questions/305880/hibernate-annotation-placement-question</a>.</p>
<p>But I want to know which is <strong>better</strong>? Access via properties or access via fields?
What are the advantages and disadvantages of each?</p>
http://stackoverflow.com/questions/781274/how-to-implement-a-jsr-specification/781307#7813075Answer by Martin OConnor for How to implement a JSR Specification Martin OConnor2009-04-23T11:28:26Z2009-04-23T11:28:26Z<p>What you may need to do, is to contact the spec lead for the given JSR. They can give you more information on obtaining a TCK.</p>
<p>It may be that you have to pay a license to obtain access to the TCK. Certainly with the Java SE specification, Sun does indeed charge a license fee for the TCK, unless you qualify as a non-profit organization to receive it for free.</p>
<p>That said, I believe it varies from JSR to JSR, so as I said above, the best bet is to contact the JSR spec lead.</p>
http://stackoverflow.com/questions/781191/making-life-better-by-not-using-java-web-frameworks/781295#78129518Answer by Martin OConnor for Making life better by not using Java web frameworks?Martin OConnor2009-04-23T11:23:32Z2009-04-23T11:23:32Z<p>The problem with coming up with your own framework is that you will make all of the same mistakes that all of the established frameworks have already stumbled on and addressed. This is true particularly when it comes to security. </p>
<p>Just ask Jeff and the guys about what they had to consider when implementing the WMD in stack overflow. I'd rather use what they have produced in a project rather than implement it from scratch. That is just one example.</p>
http://stackoverflow.com/questions/763827/which-is-the-better-approach-to-web-services-contract-first-or-contract-last1Which is the better approach to web services - contract first or contract last?Martin OConnor2009-04-18T17:45:39Z2009-04-20T17:14:17Z
<p>Which is the better approach to developing web services; contract first or contract last?<br>
What are the advantages and disadvantages of each?</p>
<p>Which do you have experience with?</p>
<p><strong>EDIT</strong>
This question is about the implementation of a web service (read: SOAP)
The question is whether the implementation classes should be coded first and the WSDL and XSD schema generated from that (contract last) or the WSDL and XSD schema written first and the implementation classes generated (contract first)</p>
http://stackoverflow.com/questions/736940/good-java-community-and-resource/737536#7375361Answer by Martin OConnor for Good Java community and resourceMartin OConnor2009-04-10T12:53:28Z2009-04-10T12:53:28Z<p>Try <a href="http://www.javablackbelt.com" rel="nofollow">Java Blackbelt</a> which provides quizzes and tests that may help you learn.</p>
http://stackoverflow.com/questions/695350/running-ant-with-jdk-1-6-on-mac-os-x/696801#6968010Answer by Martin OConnor for Running Ant with JDK 1.6 on Mac OS XMartin OConnor2009-03-30T11:16:39Z2009-03-30T11:16:39Z<p>You may need to open a new command prompt instance so that the shell can pick up any changes to the environment variables.</p>
http://stackoverflow.com/questions/665563/find-unused-classes-in-a-java-eclipse-project/665570#6655702Answer by Martin OConnor for Find unused classes in a Java Eclipse projectMartin OConnor2009-03-20T10:11:24Z2009-03-20T10:11:24Z<p>I would suggest using <a href="http://findbugs.sourceforge.net/" rel="nofollow">FindBugs</a>, which, among other things, shows where classes, methods etc are no longer used.</p>
http://stackoverflow.com/questions/638192/how-do-i-best-catch-up-with-the-latest-developments-in-java/638245#6382453Answer by Martin OConnor for How do I best catch up with the latest developments in java?Martin OConnor2009-03-12T11:35:38Z2009-03-12T11:35:38Z<p>Subscribe and listen to <a href="http://www.javaposse.com" rel="nofollow">The Java Posse podcast</a>.</p>
http://stackoverflow.com/questions/638171/java-creating-a-subclass-object-from-a-parent-object/638235#6382350Answer by Martin OConnor for Java: Creating a subclass object from a parent objectMartin OConnor2009-03-12T11:32:03Z2009-03-12T11:32:03Z<p>You could use the reflection API to loop through each of the Car fields and assign the value to the equivalent Truck fields. This can be done within truck. Further it is the only way to access the private fields of Car - at least in an automatic sense, providing that a security manager is not in place and restricting access to private field.</p>
http://stackoverflow.com/questions/613603/java-nimbus-laf-with-transparent-text-fields/618856#6188560Answer by Martin OConnor for Java Nimbus LAF with transparent text fieldsMartin OConnor2009-03-06T13:28:18Z2009-03-06T20:19:56Z<p>From the javadoc</p>
<blockquote>
<p>public void setBackground(Color bg)</p>
<p>Sets the background color of this component. The background color is
used only if the component is opaque,
and only by subclasses of JComponent
or ComponentUI implementations. Direct
subclasses of JComponent must override
paintComponent to honor this property.</p>
<p>It is up to the look and feel to honor this property, some may choose
to ignore it.</p>
</blockquote>
http://stackoverflow.com/questions/609963/java-what-if-anything-is-locked-by-synchronized-methods-apart-from-the-object/609984#6099841Answer by Martin OConnor for Java: What, if anything, is locked by synchronized methods apart from the object they belong to?Martin OConnor2009-03-04T10:20:10Z2009-03-04T10:28:11Z<blockquote>
<pre><code>a.someSyncedMethod(); // this would block ...
</code></pre>
</blockquote>
<p>Only if you mark either the run method with synchronized or have ThreadA run code in synchronized methods.</p>
<p>In the JVM, each object owns what's known as a monitor. Only one thread can own the monitor associated with a given object at a time. Synchronized is the means by which you tell the current thread to go get the monitor before continuing.</p>
<p>Also the class itself owns a monitor for static methods.</p>
http://stackoverflow.com/questions/304806/encode-and-decode-rfc2396-urls3Encode and Decode rfc2396 URLsMartin OConnor2008-11-20T09:49:44Z2009-02-23T20:21:26Z
<p>What is the best way to encode URL strings such that they are rfc2396 compliant and to decode a rfc2396 compliant string such that for example %20 is replaced with a space character?</p>
<p>edit:
URLEncoder and URLDecoder classes do <strong>not</strong> encode/decode rfc2396 compliant URLs, they encode to a MIME type of application/x-www-form-urlencoded which is used to encode HTML form parameter data.</p>
http://stackoverflow.com/questions/545391/should-i-keep-instance-variables-in-java-always-initialized-or-not/545417#5454171Answer by Martin OConnor for Should I keep instance variables in Java always initialized or not?Martin OConnor2009-02-13T10:01:22Z2009-02-13T10:01:22Z<blockquote>
<p>The point is mainly to avoid the
tedious checking for null before using
a class variable somewhere in the
code.</p>
</blockquote>
<p>You still have to check for null. Third party libraries and even the Java API will sometimes return null. </p>
<p>Also, instantiating an object that may never be used is wasteful, but that would depend on the design of your class.</p>
http://stackoverflow.com/questions/543830/how-to-set-user-agents-in-an-httprequest-unit-testing/543853#5438530Answer by Martin OConnor for How to Set User-Agents in an HttpRequest (Unit Testing)Martin OConnor2009-02-12T22:49:52Z2009-02-12T22:49:52Z<p>You probably need to use a mock HttpRequest object. This will allow you to set various properties so you can test how your webapp responds.</p>
http://stackoverflow.com/questions/537596/how-to-create-encrypted-jar-file/537839#5378390Answer by Martin OConnor for How to create encrypted Jar file?Martin OConnor2009-02-11T17:17:21Z2009-02-11T17:17:21Z<p>You could use the CipherOutputStream and CipherInputStream to serialize Java objects to disk in an encrypted format. This may an option open for saving data.</p>
http://stackoverflow.com/questions/1808141/synchronizing-on-two-or-more-objects-java/1808184#1808184Comment by Martin OConnor on Synchronizing on two or more objects (Java)Martin OConnor2009-11-27T11:47:05Z2009-11-27T11:47:05Z@Azimuth You need to protect access at the field level, which means all methods that access those fields need to synchronize on the same lock object. In short, you will need to add a synchronized block to the checkFreeSpace() too.http://stackoverflow.com/questions/1782866/how-to-create-java-applets/1783003#1783003Comment by Martin OConnor on How to create Java applets?Martin OConnor2009-11-23T13:48:06Z2009-11-23T13:48:06ZThis does not really answer the questionhttp://stackoverflow.com/questions/1751048/how-do-i-add-a-namespace-attribute-to-an-element-in-jaxb-when-marshallingComment by Martin OConnor on How do I add a namespace attribute to an element in JAXB when marshalling?Martin OConnor2009-11-17T20:26:17Z2009-11-17T20:26:17ZWhy not generate aginst the schema specified in the WSDL?
<a href="http://developer.ebay.com/webservices/bulk-data-exchange/latest/BulkDataExchangeService.wsdl" rel="nofollow">developer.ebay.com/webservices/bulk-data-exchange/…</a>http://stackoverflow.com/questions/1741628/can-we-delete-sms-in-android-before-it-reaching-to-inboxComment by Martin OConnor on can we delete sms in android before it reaching to inboxMartin OConnor2009-11-16T11:44:13Z2009-11-16T11:44:13Zremoved incorrect tagshttp://stackoverflow.com/questions/1700212/how-to-force-a-java-thread-to-close-a-thread-local-database-connection/1707135#1707135Comment by Martin OConnor on How to force a Java thread to close a thread-local database connectionMartin OConnor2009-11-10T15:26:38Z2009-11-10T15:26:38ZIn that case you could use a List<Thread> to store all the Threads that access the ThreadLocalhttp://stackoverflow.com/questions/1599721/problem-viewing-textfields-in-java-appletComment by Martin OConnor on Problem viewing textfields in java appletMartin OConnor2009-10-21T09:38:34Z2009-10-21T09:38:34ZIt depends what the code in the table class is doinghttp://stackoverflow.com/questions/1486647/using-java-webservice-in-net/1486707#1486707Comment by Martin OConnor on Using Java Webservice in .NETMartin OConnor2009-09-29T09:22:13Z2009-09-29T09:22:13ZIt really depends on which Java library is being used to implement the webservice.http://stackoverflow.com/questions/1485987/log4j-properties-file-where-to-put-it/1485995#1485995Comment by Martin OConnor on Log4J properties file - where to put itMartin OConnor2009-09-28T11:53:41Z2009-09-28T11:53:41ZIt should be in WEB-INF/classes and packaged within the war filehttp://stackoverflow.com/questions/1398434/java-or-mono-for-a-new-projectComment by Martin OConnor on Java or mono for a new projectMartin OConnor2009-09-09T09:01:05Z2009-09-09T09:01:05ZThat depends on the nature of the projecthttp://stackoverflow.com/questions/1383652/what-is-the-best-way-to-tokenize-a-text-file-in-javaComment by Martin OConnor on What is the best way to tokenize a text file in Java?Martin OConnor2009-09-05T16:06:55Z2009-09-05T16:06:55ZCan you perhaps give an example of what you are trying to achieve?http://stackoverflow.com/questions/1356401/generic-tree-implementation-in-java/1356420#1356420Comment by Martin OConnor on Generic tree implementation in JavaMartin OConnor2009-08-31T08:32:51Z2009-08-31T08:32:51Z@Ivan Seems like you would have to write unit tests anyways to test that your assumptions about the "well tested" code you are looking for are correcthttp://stackoverflow.com/questions/1356401/generic-tree-implementation-in-java/1356420#1356420Comment by Martin OConnor on Generic tree implementation in JavaMartin OConnor2009-08-31T08:30:39Z2009-08-31T08:30:39ZHow do you access the TreeNode's children exactly ? :Phttp://stackoverflow.com/questions/1343746/java-vm-suddenly-exiting-without-apparent-reason/1343922#1343922Comment by Martin OConnor on Java VM suddenly exiting without apparent reasonMartin OConnor2009-08-27T21:56:21Z2009-08-27T21:56:21ZThe issue is a OutOfMemoryError, probably in a thread that re-hashes the hashmap once it grows above a certain sizehttp://stackoverflow.com/questions/1343746/java-vm-suddenly-exiting-without-apparent-reason/1343766#1343766Comment by Martin OConnor on Java VM suddenly exiting without apparent reasonMartin OConnor2009-08-27T21:39:39Z2009-08-27T21:39:39ZI have tried this. I can reproduce it. The Java exe process is returning error code 1 to the OS. I suspect there is a bug in the hashmap's rehashing. I am on Sun's JDK 1.6.0_16http://stackoverflow.com/questions/1244541/how-to-test-void-method-with-junit-testing-toolsComment by Martin OConnor on How to test void method with Junit testing tools?Martin OConnor2009-08-07T12:53:16Z2009-08-07T12:53:16ZWhat is the Class under test?