User John O - Stack Overflowmost recent 30 from stackoverflow.com2010-03-22T01:43:42Zhttp://stackoverflow.com/feeds/user/157080http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/375544/are-there-any-cons-to-using-jodatime/1664316#16643162Answer by John O for Are there any cons to using jodatime?John Ohttp://stackoverflow.com/users/1570802009-11-02T23:08:57Z2010-02-03T12:07:59Z<p>In my opinion, the most important drawback in Joda Time is about precision: many databases store timestamps with microsecond (or even nanosecond) precision. Joda-time goes only to milliseconds. This is not acceptable to me: all "data model" classes that I use need to reflect the full precision of the data in my database. Approximations or truncations of my data by a library just don't cut it. </p>
<p>Here is the reasoning behind the choice of millisecond precision, taken from the JSR-310 mailing list: </p>
<p><em>"Joda-Time chose to use milliseconds as it made conversions to Date and Calendar easier."</em> - S. Colebourne</p>
<p>Easier for whom? The author of the library, one would assume... Incorrect design decision, in my opinion, when almost all databases store times to microsecond/nanosecond precision. The disregard for database values is worrying.</p>
http://stackoverflow.com/questions/2172333/replacing-keyboard-with-voice-control1Replacing keyboard with voice controlJohn Ohttp://stackoverflow.com/users/1570802010-01-31T16:09:29Z2010-01-31T16:56:05Z
<p>I am sick of using a keyboard. </p>
<p>Has anyone had any success with voice control of their computer, using tools such as Dragon Naturally Speaking? What about coding tasks, and control of an IDE? Any problems specific to that?</p>
http://stackoverflow.com/questions/1894377/understanding-the-workings-of-equals-and-hashcode-in-a-hashmap/1896439#18964390Answer by John O for Understanding the workings of equals and hashCode in a HashMapJohn Ohttp://stackoverflow.com/users/1570802009-12-13T12:59:50Z2009-12-13T12:59:50Z<p>The <a href="http://www.javapractices.com/topic/TopicAction.do?Id=17" rel="nofollow">Implementing equals</a> and <a href="http://www.javapractices.com/topic/TopicAction.do?Id=28" rel="nofollow">Implementing hashCode</a> topics on javapractices.com might be helpful as well. </p>
http://stackoverflow.com/questions/1863567/why-is-jhat-missing-object-allocated-from0Why is JHAT missing "Object allocated from" John Ohttp://stackoverflow.com/users/1570802009-12-07T23:12:24Z2009-12-07T23:12:24Z
<p>I am running the JHAT memory profiler. This example shows information attached to a single object:
<a href="https://hat.dev.java.net/doc/examples/object.html" rel="nofollow">https://hat.dev.java.net/doc/examples/object.html</a></p>
<p>This info includes a section "object allocated from".</p>
<p>When I run jhat, I get everything except the "object allocated from" section. Why? I can't see any setting that controls this.</p>
<p>Environment:</p>
<ul>
<li>JDK 1.6.0 on Windows</li>
<li>I have generated the heap using JConsole and jmap, with the same results</li>
</ul>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1786623/have-you-ever-had-a-requirement-for-a-non-gregorian-calendar-date-in-a-database0Have you ever had a requirement for a non-Gregorian calendar date, in a database application?John Ohttp://stackoverflow.com/users/1570802009-11-23T22:49:50Z2009-11-23T23:07:19Z
<p>Context: I notice that the major databases support only the Gregorian calendar. Thus, it would seem difficult to build a database app with anything other than the Gregorian calendar.</p>
<p>If you have ever used a non-Gregorian date in a database app, I would be curious to know the context of your use case.</p>
<p>For example, if you live in India, what percentage (roughly speaking) of software built in India would use a non-Gregorian calendar? Is it common, or rare? Does the lack of support for non-Gregorian calendars annoy you?</p>
http://stackoverflow.com/questions/607863/do-you-find-java-util-logging-sufficient/1687044#16870441Answer by John O for Do you find java.util.logging sufficient?John Ohttp://stackoverflow.com/users/1570802009-11-06T11:34:43Z2009-11-06T11:34:43Z<p>The JDK logging facilities have <strong>always</strong> done what I need them to do - never had a problem with it. </p>
<p>To me, third party logging tools are neither necessary nor desirable. </p>
http://stackoverflow.com/questions/116978/can-anyone-recommend-a-simple-java-web-app-framework/1628147#16281470Answer by John O for Can anyone recommend a simple Java web-app framework?John Ohttp://stackoverflow.com/users/1570802009-10-27T00:42:03Z2009-10-27T00:42:03Z<p>The <a href="http://www.web4j.com/" rel="nofollow">web4j</a> tool markets itself as simple and easy. Some points about it:</p>
<ul>
<li>uses a single xml file (the web.xml file required by all servlets)</li>
<li>no dependency on Maven (or any other 3rd party tool/jar)</li>
<li>full stack, open source (BSD)</li>
<li>smallest number of classes of any full stack java framework </li>
<li>SQL placed in plain text files </li>
<li>encourages use of immutable objects</li>
<li>minimal toolset required (JSP/JSTL, Java, SQL)</li>
</ul>
http://stackoverflow.com/questions/1450168/are-there-any-java-mvc-frameworks-that-utilize-request-path-patterns-instead-of-d/1451044#14510441Answer by John O for Are there any Java MVC frameworks that utilize request path patterns instead of defined servlet url patterns?John Ohttp://stackoverflow.com/users/1570802009-09-20T13:43:35Z2009-09-20T13:43:35Z<p>An example of one tool that works as you desire is <a href="http://www.web4j.com/Support.jsp" rel="nofollow">web4j</a>.</p>
<p>By <a href="http://www.web4j.com/web4j/javadoc/hirondelle/web4j/request/RequestParserImpl.html" rel="nofollow">default</a>, it maps incoming URLS to the Action class whose package-qualified name maps in a fairly natural way the the incoming URL.</p>
<p>Example from its docs:</p>
<ul>
<li>Request URL: '<a href="http://www.blah.com/fish/main/member/MemberEdit.list" rel="nofollow">http://www.blah.com/fish/main/member/MemberEdit.list</a>'</li>
<li>Extracted part of URL: '/main/member/MemberEdit'</li>
<li>Maps (by default) to the Action: 'hirondelle.fish.main.member.MemberAction.java'</li>
</ul>
<p>This is an example of how that particular tool performs the task. Since this is such a basic feature of web apps, I would imagine that nearly all such tools have similar mechanisms.</p>
<p>I am not a big user of Spring, but I can see from its docs that it has a number of ways of mapping requests to Actions :</p>
<ul>
<li><a href="http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/web/servlet/handler/SimpleUrlHandlerMapping.html" rel="nofollow">SimpleUrlHandlerMapping</a></li>
<li><a href="http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/web/servlet/mvc/support/ControllerClassNameHandlerMapping.html" rel="nofollow">ControllerClassNameHandlerMapping</a></li>
</ul>
http://stackoverflow.com/questions/1444221/how-to-make-code-modular/1447369#14473690Answer by John O for How to make code modular?John Ohttp://stackoverflow.com/users/1570802009-09-19T00:51:54Z2009-09-19T00:51:54Z<p>The <a href="http://www.javapractices.com/topic/TopicAction.do?Id=205" rel="nofollow">package-by-feature</a> idea helps to make code more modular. </p>
<p>Many examples seen on the web divide applications first into layers, not features</p>
<ul>
<li>models</li>
<li>data access</li>
<li>user interface</li>
</ul>
<p>It seems better, however, to divide applications up using top-level packages that align with <strong>features, not layers</strong>.</p>
<p>Here is an <a href="http://www.web4j.com/predict/javadoc/index.html" rel="nofollow">example</a> of a web app that uses package-by-feature. Note the names of the top-level packages, which read as a list of actual features in the application. Note as well how each package contains all items related to a feature - the items aren't spread out all over the place; most of the time, they are all in a single package/directory.</p>
<p>Usually, deletion of a feature in such an app can be implemented in a single operation - deletion of a single directory.</p>
http://stackoverflow.com/questions/1446039/what-are-good-ways-to-keep-gridbagconstraints-under-control/1447339#14473392Answer by John O for What are good ways to keep GridBagConstraints under control?John Ohttp://stackoverflow.com/users/1570802009-09-19T00:33:04Z2009-09-19T00:33:04Z<p>I feel your pain. I feel it so much, that I have recently abandoned GridBagLayout entirely, in favor of another tool - <a href="http://www.jgoodies.com/freeware/forms/" rel="nofollow">JGoodies Forms</a>. Its layout code is more concise, reads at a higher level, and is in general much more satisfying to use than GridBagLayout. </p>
<p>It defines a mini-language to define layouts. It's cryptic at first glance, but don't let that discourage you. </p>
<p>If you are able to use it in your environment, I would highly recommend it.</p>
http://stackoverflow.com/questions/1413277/memory-leaks-always-need-a-long-lived-object1Memory leaks always need a long-lived object?John Ohttp://stackoverflow.com/users/1570802009-09-11T21:06:41Z2009-09-12T19:52:51Z
<p>Is this statement true, false, or poorly formulated: </p>
<p><strong>"In Java, memory leaks must always be related somehow to a long-lived object."</strong></p>
<p>In this context, I am referring simply to regular objects, and not to system resources in general (file descriptors, and so on).</p>
<p>An example of a long-lived object might be a singleton (as typically implemented, at any rate), which lives for as long as an application is running. </p>
http://stackoverflow.com/questions/1391590/java-gui-alternatives/1393183#13931832Answer by John O for Java GUI alternativesJohn Ohttp://stackoverflow.com/users/1570802009-09-08T10:24:55Z2009-09-08T10:24:55Z<p>Layouts: </p>
<p>For layouts, I have abandoned the JDK Layout Managers in favor of the <a href="http://www.jgoodies.com/freeware/forms/" rel="nofollow">JGoodies Forms</a> tool. I find it much more effective. It reads at a higher level, and reduces significantly the amount of code related to layouts.</p>
http://stackoverflow.com/questions/1385105/how-do-i-get-started-building-web-apps-with-java/1385505#13855050Answer by John O for How do I get started building web apps with Java?John Ohttp://stackoverflow.com/users/1570802009-09-06T11:58:26Z2009-09-06T11:58:26Z<p>The <a href="http://www.web4j.com/Java%5FWeb%5FApplication%5FFramework%5FOverview.jsp" rel="nofollow">WEB4J</a> tool is likely worth a look. </p>
<p>It has a much smaller number of classes in comparison with other tools. It is "full stack", so it helps you build all parts of your web app. Thus, you don't have to learn several different tools - just one. </p>
<p>A college instructor related to me that he felt it was "almost perfect" for his students, since it was at just the right level, and didn't hide things behind complicated abstractions - it was plain to see how all the parts worked together. </p>
http://stackoverflow.com/questions/1375911/compare-log4j-and-logger/1378480#13784800Answer by John O for Compare log4j and LoggerJohn Ohttp://stackoverflow.com/users/1570802009-09-04T10:42:29Z2009-09-04T10:42:29Z<p>I would recommend the <a href="http://java.sun.com/j2se/1.4.2/docs/guide/util/logging/overview.html" rel="nofollow">JDK logging API</a>. I have used it for many years, without any problem whatsoever. It's part of the JDK, so no extra jar is required. The distinctions between log4j and JDK logging are small, and, in my opinion, don't justify the use of log4j. </p>
http://stackoverflow.com/questions/1359817/java-bigdecimal/1361739#13617390Answer by John O for java - BigDecimalJohn Ohttp://stackoverflow.com/users/1570802009-09-01T10:39:46Z2009-09-01T10:39:46Z<p>There is an extensive example of how to do this on javapractices.com. See in particular the <a href="http://www.javapractices.com/topic/TopicAction.do?Id=13" rel="nofollow">Money</a> class, which is meant to make monetary calculations simpler than using BigDecimal directly. </p>
<p>The design of this Money class is intended to make expressions more natural. For example:</p>
<pre><code>if ( amount.lt(hundred) ) {
cost = amount.times(price);
}
</code></pre>
<p>The WEB4J tool has a similar class, called <a href="http://www.web4j.com/web4j/javadoc/hirondelle/web4j/model/Decimal.html" rel="nofollow">Decimal</a>, which is a bit more polished than the Money class.</p>
http://stackoverflow.com/questions/1349896/tag-interface-for-singletons2Tag Interface for SingletonsJohn Ohttp://stackoverflow.com/users/1570802009-08-28T23:36:42Z2009-08-30T09:30:44Z
<p>The 'singleton-ness' of a class is an important aspect of how a class should be used. However, it usually doesn't have any explicit status in the exposed API of a class. Yes, conventional method names such as getInstance() are often used, but that's not exactly what I'm referring to here.</p>
<p>A 'tag interface' is an interface which contains no methods or data. An example of a tag interface is <a href="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html" rel="nofollow">Serializable</a>. </p>
<p>Would it not be useful to define a tag interface for singletons? This would:</p>
<ul>
<li>allow them to be easily identified in the code base of a project</li>
<li>be more explicit</li>
<li>provide a place to document how singletons should be treated. As one example, one could mention that long-lived objects are fruitful sources of memory leaks, and that singletons should never be wired to short-lived objects.</li>
</ul>
<p>This is a simple idea, but I have never seen it mentioned anywhere. </p>
http://stackoverflow.com/questions/1310994/hashcodebuilder-in-c/1311202#13112020Answer by John O for HashCodeBuilder in C++John Ohttp://stackoverflow.com/users/1570802009-08-21T10:37:28Z2009-08-21T10:37:28Z<p>By the way, the <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html#hashCode%28%29" rel="nofollow">hashCode</a> method does not return an identifier for an object. This is a common misconception. There is nothing to prevent 2 objects of the same class returning the same value. The hashCode is meant for hash table data structures, not for identifying objects. Those are 2 separate concepts.</p>
http://stackoverflow.com/questions/898405/how-to-implement-a-sql-like-like-operator-in-java/1285095#12850950Answer by John O for How to implement a SQL like 'LIKE' operator in java?John Ohttp://stackoverflow.com/users/1570802009-08-16T19:11:51Z2009-08-16T19:11:51Z<p>The <a href="http://java.sun.com/javase/6/docs/api/java/util/Comparator.html" rel="nofollow">Comparator</a> and <a href="http://java.sun.com/javase/6/docs/api/java/lang/Comparable.html" rel="nofollow">Comparable</a> interfaces are likely inapplicable here. They deal with sorting, and return integers of either sign, or 0. Your operation is about finding matches, and returning true/false. That's different.</p>
http://stackoverflow.com/questions/1265688/mysql-date-problem-in-different-timezones/1283185#12831850Answer by John O for Mysql date problem in different timezonesJohn Ohttp://stackoverflow.com/users/1570802009-08-16T00:16:15Z2009-08-16T00:16:15Z<p>This problem is very widely seen. For example, here are some remarks by <a href="http://www.martinfowler.com/bliki/TimeZoneUncertainty.html" rel="nofollow">Martin Fowler</a>.</p>
<p>The underlying issue is that Java's date classes treat dates/times like quantities in physics - representations of a specific, immutable instant in time. </p>
<p>The problem is that this does NOT match how most people think casually about time. In typical discourse, people think of '2009-08-01 18:00' as fixed idea. The problem is that there is no time zone attached to such a representation; hence, it does not actually represent a specific instant. </p>
<p>This is a continuing source of confusion in many applications. While Java always uses timezones (either implicitly or explicitly), databases don't usually store time zone information along with dates/times. Hence, Java must ADD an assumed time zone when it creates a Date object. This will be done by a JDBC driver when it converts the value to a Date object. If such code runs on a server, then the assumed time zone often doesn't match that used by the client/end user.</p>
<p>The only answer is to make sure your Java code uses a 'standard' time zone. </p>
http://stackoverflow.com/questions/1269342/what-would-you-tell-yourself-if-you-were-teaching-your-past-self-java-as-your-fir/1283132#12831320Answer by John O for What would you tell yourself if you were teaching your past-self Java as your first language?John Ohttp://stackoverflow.com/users/1570802009-08-15T23:49:48Z2009-08-15T23:49:48Z<p>The Effective Java book by Joshua Bloch is widely read and respected.
I could also recommend The Java Programming Language by Gosling et al.
The Code Complete book your are reading is highly recommended too - even though it was first written many years ago, the content and spirit of the book is still valid.</p>
<p>I agree with earlier poster that it's important to build things - problems you are interested in solving. I also found it helpful in the early days to go slowly at first, and make sure that you get the basics down. </p>
<p>The libraries in Java are extensive. At first, it looks large and intimidating. But in practice, you will only use a fraction of the library classes. </p>
http://stackoverflow.com/questions/1276177/what-are-the-benefits-of-struts/1283109#12831091Answer by John O for What Are the Benefits of StrutsJohn Ohttp://stackoverflow.com/users/1570802009-08-15T23:30:38Z2009-08-15T23:30:38Z<p>I think your feeling about removing Struts is a sound and understandable reaction. Struts just doesn't seem to do very much for an application.</p>
http://stackoverflow.com/questions/1277965/should-i-set-the-initial-java-string-values-from-null-to/1283106#12831060Answer by John O for Should I set the initial java String values from null to ""?John Ohttp://stackoverflow.com/users/1570802009-08-15T23:26:49Z2009-08-15T23:26:49Z<p>I disagree with the other posters. Using the empty string is acceptable. I prefer to use it whenever possible. </p>
<p>In the great majority of cases, a null String and an empty String represent the exact same thing - unknown data. Whether you represent that with a null or an empty String is a matter of choice. </p>
http://stackoverflow.com/questions/1277157/java-regex-replace-with-capturing-group/1283098#12830980Answer by John O for Java Regex Replace with Capturing GroupJohn Ohttp://stackoverflow.com/users/1570802009-08-15T23:19:58Z2009-08-15T23:19:58Z<p>There is an example on this <a href="http://www.javapractices.com/topic/TopicAction.do?Id=80" rel="nofollow">page of JavaPractices.com</a> - see the second example, "Dynamic Replacement".</p>
http://stackoverflow.com/questions/375544/are-there-any-cons-to-using-jodatime/1664316#1664316Comment by John O on Are there any cons to using jodatime?John Ohttp://stackoverflow.com/users/1570802010-02-03T11:43:10Z2010-02-03T11:43:10ZOracle, DB2, and PostgreSQL can all store timestamp values to microsecond or greater precision. Those are hardly obscure databases, now are they?http://stackoverflow.com/questions/2148799/escaping-html-in-java/2148829#2148829Comment by John O on Escaping html in JavaJohn Ohttp://stackoverflow.com/users/1570802010-01-28T02:03:32Z2010-01-28T02:03:32ZThe <c:out> tag is not perfectly suitable. It escapes all of 5 characters, while the OWASP folks list many more than 5 characters that should be escaped. I don't trust c:out, and I don't recommend its use at all.http://stackoverflow.com/questions/1786623/have-you-ever-had-a-requirement-for-a-non-gregorian-calendar-date-in-a-database/1786659#1786659Comment by John O on Have you ever had a requirement for a non-Gregorian calendar date, in a database application?John Ohttp://stackoverflow.com/users/1570802009-12-13T12:47:41Z2009-12-13T12:47:41ZIt's hard to tell, but in practice it seems like the great majority of software is written only with the Gregorian Calendar in mind.http://stackoverflow.com/questions/1786623/have-you-ever-had-a-requirement-for-a-non-gregorian-calendar-date-in-a-databaseComment by John O on Have you ever had a requirement for a non-Gregorian calendar date, in a database application?John Ohttp://stackoverflow.com/users/1570802009-11-23T23:06:32Z2009-11-23T23:06:32ZHar! Good one, citoyen!http://stackoverflow.com/questions/1544335/java-storing-sql-statements-in-an-external-file/1544373#1544373Comment by John O on Java - Storing SQL statements in an external fileJohn Ohttp://stackoverflow.com/users/1570802009-10-26T23:01:10Z2009-10-26T23:01:10ZBe careful with properties files - the DBA's would likely rebel against having to append a '\' on every line, in order to continue a statement.http://stackoverflow.com/questions/1544335/java-storing-sql-statements-in-an-external-file/1544548#1544548Comment by John O on Java - Storing SQL statements in an external fileJohn Ohttp://stackoverflow.com/users/1570802009-10-26T22:58:51Z2009-10-26T22:58:51ZI considered using MessageFormat when implementing web4j's data layer, but I rejected it. The main reason was the arbitrary maximum of 10 parameters allowed.http://stackoverflow.com/questions/1289492/hibernate-timestamp-with-timezone/1290991#1290991Comment by John O on Hibernate Timestamp with TimezoneJohn Ohttp://stackoverflow.com/users/1570802009-10-18T16:59:01Z2009-10-18T16:59:01ZAccording to SQL in a Nutshell by Kline et al, TIMESTAMP WITH TIMEZONE is a type defined by SQL 2003. Thus, it's not an Oracle extension.http://stackoverflow.com/questions/1486749/how-to-implement-a-login-system-in-jsp/1486761#1486761Comment by John O on How to implement a login system in JSPJohn Ohttp://stackoverflow.com/users/1570802009-09-28T23:59:33Z2009-09-28T23:59:33ZNote as well there are 2 styles of security constraints: (1) based on role, and (2) based on user.
Style 1 is seen mostly inside businesses (intranets), and, as stated by djna, is handled well by the Servlet Specification (via security settings in web.xml). Style 2 is seen mostly with public web apps, where only the 'owner' of data may perform certain operations on it (change, delete, for example).
Style 2 is not handled by the Servlet Specification. Some web app frameworks can handle this for you.http://stackoverflow.com/questions/1444221/how-to-make-code-modular/1444271#1444271Comment by John O on How to make code modular?John Ohttp://stackoverflow.com/users/1570802009-09-19T00:43:46Z2009-09-19T00:43:46Z(Add to previous comment) - When you delete something, you immediately expose its connections with the rest of the program - all of the places where it is wired to calling code. More modularity <i>usually</i> means fewer connection points, and usually means the connection points are more "local" in scope (for instance, within a single package).http://stackoverflow.com/questions/1444221/how-to-make-code-modular/1444271#1444271Comment by John O on How to make code modular?John Ohttp://stackoverflow.com/users/1570802009-09-19T00:40:19Z2009-09-19T00:40:19ZAnother benchmark might be the "deletion criterion": If you delete X (package, class, method, field) from your program, what breaks? If there are breaks, how "far away" are they from the deleted item? If the broken items are distant, then that means X was less modular.http://stackoverflow.com/questions/1445590/how-can-state-be-maintained-between-java-servlets/1445601#1445601Comment by John O on How can state be maintained between Java Servlets?John Ohttp://stackoverflow.com/users/1570802009-09-19T00:26:14Z2009-09-19T00:26:14Z(There is actually no requirement that objects stored in a session must be Serializable. Its an option, not a requirement.)http://stackoverflow.com/questions/1413277/memory-leaks-always-need-a-long-lived-object/1413316#1413316Comment by John O on Memory leaks always need a long-lived object?John Ohttp://stackoverflow.com/users/1570802009-09-11T21:33:07Z2009-09-11T21:33:07ZThe key word in the question is "related". The question is not whether the long-lived object is the CAUSE of the leak, but whether it is RELATED to the leak's existence somehow or other. Different idea. http://stackoverflow.com/questions/1349896/tag-interface-for-singletonsComment by John O on Tag Interface for SingletonsJohn Ohttp://stackoverflow.com/users/1570802009-08-29T01:48:21Z2009-08-29T01:48:21ZThe question of whether or not to use them is tangential to the question posed here. Granted, singletons have drawbacks. But if you are using them - for whatever reason - would it not be best to use a Singleton tag interface?