User Steve B. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T04:59:57Z http://stackoverflow.com/feeds/user/19479 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839599/analyze-gc-logs-for-sun-hotspots-jvm-6/1841427#1841427 0 Answer by Steve B. for Analyze GC logs for Sun Hotspots, JVM 6 Steve B. 2009-12-03T17:13:42Z 2009-12-03T17:13:42Z <p>Have you looked at jvisualvm? Comes with the latest JDK, and allows you to watch the JVM. Sample output (using the <a href="http://g4u0420c.houston.hp.com/en/5992-4687/img/visualgc%5F2.png" rel="nofollow">visualGC</a> plugin). Sample output - <img src="http://g4u0420c.houston.hp.com/en/5992-4687/img/visualgc%5F2.png" alt="alt text"></p> http://stackoverflow.com/questions/1834632/java-enum-and-additional-class-files/1834694#1834694 -1 Answer by Steve B. for Java enum and additional class files Steve B. 2009-12-02T17:58:56Z 2009-12-02T18:10:44Z <p>the ClassName$InnerName syntax is generated for inner classes. If you see $1, $2, etc. for the inner name syntax that's generated for anonymous inner classes. </p> <p>You could get rid of some of your enums (at least any that are just raw lists of constants, that is, any that don't have any functionality defined on them) by going back to old-style un-typesafe static final ints, which might save you a (very) small amount of space. Are you really in a situation where that would matter?</p> http://stackoverflow.com/questions/1834510/adding-timestamp-to-javas-gc-messages-in-tomcat-6/1834600#1834600 1 Answer by Steve B. for Adding Timestamp to Java's GC messages in Tomcat 6 Steve B. 2009-12-02T17:44:04Z 2009-12-02T17:44:04Z <p>As far as I know this can't be done. According to <a href="http://java.sun.com/docs/hotspot/gc1.4.2/example.html" rel="nofollow">sun documentation</a></p> <pre><code>The format is not guaranteed to be the same in later releases. In particular the output associated with -XX:+PrintGCDetails is almost guaranteed to change in that it represents the current needs of JVM developers. </code></pre> <p>Admittedly this is an old reference( for java 1.4!) but I could find nothing more current, and the last time our group went through gc tuning, a few months back, we saw nothing in the current docs specifically addressing formatting.</p> http://stackoverflow.com/questions/1833480/stringbuffer-append/1833501#1833501 3 Answer by Steve B. for StringBuffer append("") Steve B. 2009-12-02T15:10:12Z 2009-12-02T15:10:12Z <p>Nope.</p> <p>And given that they're hardcoded strings, it'd be identical to write </p> <pre><code>buff1 = new StringBuffer("some value Asome value B"); </code></pre> <p>BTW, it's a bit more efficient to use a StringBuilder rather than a StringBuffer (and the API is identical).</p> http://stackoverflow.com/questions/1831520/relation-between-language-and-scalability/1833051#1833051 0 Answer by Steve B. for Relation between language and scalability Steve B. 2009-12-02T13:56:12Z 2009-12-02T13:56:12Z <p>In addition to the points made here about Erlang (Which I was not aware of) there is a sense in which some languages are more suited for scripting and smaller tasks.</p> <p>Languages like ruby and python have some features which are great for prototyping and creativity but terrible for large scale projects. Arguably their best features are their lack of "formality", which hurts you in large projects.</p> <p>For example, static typing is a hassle on small script-type things, and makes languages like java very verbose. But on a project with hundreds or thousands of classes you can easily see variable types. Compare this to maps and arrays that can hold heterogeneous collections, where as a consumer of a class you can't easily tell what kind of data it's holding. This kind of thing gets compounded as systems get larger. e.g. You can also do things that are really difficult to trace, like dynamically add bits to classes at runtime (which can be fun but is a nightmare if you're trying to figure out where a piece of data comes from) or call methods that raise exceptions without being forced by the compiler to declare the exception. Not that you couldn't solve these kinds of things with good design and disciplined programming - it's just harder to do.</p> <p>As an extreme case, you could (performance issues aside) build a large system out of shell scripts, and you could probably deal with some of the issues of the messiness, lack of typing and global variables by being <em>very</em> strict and careful with coding and naming conventions ( in which case you'd sort of be creating a static typing system "by convention"), but it wouldn't be a fun exercise.</p> http://stackoverflow.com/questions/1829223/limiting-thread-execution-processor-cycles-in-java/1829293#1829293 1 Answer by Steve B. for Limiting Thread Execution Processor Cycles in Java Steve B. 2009-12-01T22:10:14Z 2009-12-01T22:10:14Z <p>Since you're controlling the bot execution and explicitly calling next yourself, why not just count the iterations? e.g.</p> <pre><code>public class Botcaller extends Thread { private Bot bot; int cycles_completed; public static final int MAX_ALLOWED_CYCLES=...; public void run() { while (cycles_completed &lt;MAX_ALLOWED_CYCLES) { bot.move; cycles_completed++; yield() } } } </code></pre> http://stackoverflow.com/questions/1821785/problem-getting-tomcat-to-start-up-on-reboot/1829165#1829165 0 Answer by Steve B. for Problem getting tomcat to start up on reboot Steve B. 2009-12-01T21:48:06Z 2009-12-01T21:48:06Z <p>You can get this kind of error from tomcat if you either try to restart before a previous shutdown has completed or after a shutdown that's not clean - e.g, if you have a webapp that starts some manually managed threads and leave them hanging, and then call the tomcat shutdown script, the tomcat service will stop responding on the port but the process will not die.</p> <p>it looks like the apache script on that page calls tomcat restart (i.e. shutdown, startup) and you then have the tomcat service configured as well, so if the apache script loads first tomcat start will be called with tomcat already running and if tomcat is first you'll call shutdown/startup with tomcat already running. </p> http://stackoverflow.com/questions/1827212/registering-a-shutdown-hook-in-spring-2-5 1 Registering a shutdown hook in Spring 2.5 Steve B. 2009-12-01T16:15:25Z 2009-12-01T17:11:03Z <p>I have a spring application which is not calling bean destroy methods on shutdown. I've seen references to this being due to instantiation in a beanRefFactory, and that this can be circumvented through manually calling registerShutdownHook() on an the application context.This method seems to have disappeared from spring between versions 2.0 - 2.5. </p> <p>Can someone point me in the direction of how this is now done?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1739142/from-a-management-pov-how-much-is-a-code-review-worth/1785680#1785680 1 Answer by Steve B. for From a Management POV: How much is a code review worth? Steve B. 2009-11-23T20:19:44Z 2009-11-23T20:19:44Z <p>An additional point to all of the above is that without a code review or some other systematic way of having a public discussion of code and preferred practice you run the risk of creating a culture where quality doesn't matter.</p> <p>I've worked in a number of places where there was no mechanism like code review in place, and it generally led to a balkanization of the codebase. Even the most well intentioned developers built things based on their own preference. Not only do you get a mess of different standards, but developers tend to work as if they're working on a solo project - everything works the way they're used to working, so they can't see a problem.</p> http://stackoverflow.com/questions/1764426/persistence-strategy-for-low-latency-reads-and-writes/1765230#1765230 0 Answer by Steve B. for Persistence strategy for low latency reads and writes Steve B. 2009-11-19T17:52:17Z 2009-11-19T18:02:43Z <p>I've worked on a large project that used asyncrhonous writes althoguh in that case it was just hand-written using background threads. You could also implement something like that by offloading the db write process to a JMS queue.</p> <p>One thing that will certainly speed up db writes is to do them in batches. JDBC batch updates can be orders of magnitude faster than individual writes, and if you're doing them asynchronously you can just write them 500 at a time.</p> http://stackoverflow.com/questions/1759549/java-generics-multiple-generic-parameters/1759576#1759576 1 Answer by Steve B. for Java generics: multiple generic parameters? Steve B. 2009-11-18T22:22:33Z 2009-11-18T22:22:33Z <p>In your function definition you're constraining sets a and b to the same type. You can also write</p> <pre><code>public &lt;X,Y&gt; void myFunction(Set&lt;X&gt; s1, Set&lt;Y&gt; s2){...} </code></pre> http://stackoverflow.com/questions/1757978/j2ee-how-to-start-am-i-doing-it-right/1758021#1758021 0 Answer by Steve B. for J2EE how to start? Am I doing it right? Steve B. 2009-11-18T18:19:04Z 2009-11-18T18:19:04Z <ul> <li><p>basic jsp syntax and jstl (jsp standard tag libraries - you don't have to know all of them, just use a few to get familiar with how they work)</p></li> <li><p>the basic servlet lifecycle</p></li> <li><p>After you get a the container, I'd build something based on a spring/hibernate tutorial- this seems to be what I've been asked about in every J2EE interview I've been on, EJB's not so much.</p></li> </ul> http://stackoverflow.com/questions/1635719/isassignablefrom-function-of-class-java/1757982#1757982 0 Answer by Steve B. for isAssignableFrom function of Class.java Steve B. 2009-11-18T18:13:01Z 2009-11-18T18:13:01Z <p>hang on, why are you calling "equalsIgnoreCase" to check the classnames rather than just plain "equals"? Is it possible you've got a conflict between (nearly) matching names?</p> http://stackoverflow.com/questions/1750604/getting-better-performance-appending-strings-than-going-through-standard-java-str/1750620#1750620 5 Answer by Steve B. for getting better performance appending strings than going through standard Java stringbuilder.append Steve B. 2009-11-17T17:53:12Z 2009-11-17T17:53:12Z <p>You could create your stringbuilders with a higher initial capacity to reduce the amount of resizing, i.e. there's a constructor that allows you to say </p> <pre><code>int SIZE=10000; StringBuilder b = new StringBuilder(SIZE); </code></pre> <p>I would expect that manually juggling char[] and indexes wouldn't improve much on this, as (I assume) that's what StringBuilder is already doing for you.</p> http://stackoverflow.com/questions/1749588/proper-way-to-declare-and-set-a-private-final-member-variable-from-the-constructo/1750353#1750353 0 Answer by Steve B. for Proper way to declare and set a private final member variable from the constructor in Java? Steve B. 2009-11-17T17:13:24Z 2009-11-17T17:13:24Z <p>You can also use double-brace initialization, although whether or not you think it's cleaner is probably a matter of taste, but at least has the benefit of having all the initialization code in one place:</p> <pre><code>public class Base { public final Map&lt; String, Command &gt; availableCommands; public Base() { availableCommands = Collections.unmodifiableMap( new HashMap() { { put( "A", new CommandA() ); put( "B", new CommandB() ); } } ); } } </code></pre> http://stackoverflow.com/questions/835621/comparison-of-jdbc-connection-pools 3 Comparison of JDBC Connection pools Steve B. 2009-05-07T16:11:49Z 2009-11-14T13:00:26Z <p>Does anyone have any information comparing performance characteristics of different ConnectionPool implementations? </p> <p>Background: I have an application that runs db updates in background threads to a mysql instance on the same box. Using the Datasource com.mchange.v2.c3p0.ComboPooledDataSource would give us occasional SocketExceptions: com.mysql.jdbc.CommunicationsException: Communications link failure due to underlying exception: </p> <pre><code>** BEGIN NESTED EXCEPTION ** java.net.SocketException MESSAGE: Broken pipe STACKTRACE: java.net.SocketException: Broken pipe at java.net.SocketOutputStream.socketWrite0(Native Method) </code></pre> <p>Increasing the mysql connection timeout increased the frequency of these errors.</p> <p>These errors have disappeared on switching to a different connection pool (com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource); however the performance may be worse and the memory profile is noticeably so (we get fewer, and much larger, GC's than the c3p0 pool).</p> http://stackoverflow.com/questions/1732740/how-to-validate-java-logging-properties-files/1732808#1732808 1 Answer by Steve B. for How to validate Java logging properties files? Steve B. 2009-11-14T00:45:35Z 2009-11-14T00:45:35Z <p>The problem with running any set of partial syntax checks against the properties files is that they'll always be inadequate by definition unless you capture every partial variation acceptable by the logging system, in which case you'll have recreated a portion of the logging system. No matter what properties you choose to validate theres bound to be additional ways to submit broken files. </p> <p>Rather than testing for individual properties, why not create an additional (temporary, for the scope of the check only) logger object based on the input file and detect if it throws an error? </p> http://stackoverflow.com/questions/1716325/is-collections-copy-broken-in-openjdk-6/1716379#1716379 1 Answer by Steve B. for Is Collections.copy broken (in OpenJDK 6)? Steve B. 2009-11-11T16:31:56Z 2009-11-11T16:31:56Z <p>From the documentation for Collection.copy:</p> <blockquote> <p>Copies all of the elements from one list into another. After the operation, the index of each copied element in the destination list will be identical to its index in the source list. <em>The destination list must be at least as long as the source list</em>. If it is longer, the remaining elements in the destination list are unaffected.</p> </blockquote> <p>I agree with you that it's not terribly intuitive, but it seems like what you're really trying to do is more like clone().</p> http://stackoverflow.com/questions/1716259/working-with-hibernate-multiple-criteria-with-logical-and/1716333#1716333 2 Answer by Steve B. for Working with hibernate multiple Criteria with logical AND Steve B. 2009-11-11T16:27:50Z 2009-11-11T16:27:50Z <p>Since you're "AND"-ing all of your restrictions the grouping is irrelevant, so you can just continue on as in your second example, as there's nothing to be gained by subgrouping them, e.g. </p> <pre><code>.add(Restrictions.eq("referenceID", referenceId)).add(Restrictions.eq("verificationType", type)).add(Restrictions.eq("username", username))... </code></pre> <p>You do run into this problem where you need to group mixed "AND" and "OR" queries, if you want to group multiple "OR" values you can also add Criteria to a <a href="https://www.hibernate.org/hib%5Fdocs/v3/api/org/hibernate/criterion/Disjunction.html" rel="nofollow">Disjunction</a> </p> http://stackoverflow.com/questions/1710809/when-and-why-should-the-strategy-pattern-be-used/1710844#1710844 1 Answer by Steve B. for When and why should the Strategy Pattern be used? Steve B. 2009-11-10T20:08:20Z 2009-11-10T20:08:20Z <p>The code snippet you're quoting is a bit deceptive in that it's (slightly) out of context. What you're writing below in your example is also the strategy pattern - you've just rewritten the above example a bit more concisely.</p> <p>The main point in the example is that the specifics of the mathematical operation are abstracted away from the caller. This way the caller can work with any binary operator by creating a new ConcreteStrategy, e.g.</p> <pre><code> int mod = new ConcreteStrategy(){ public int execute(int a, int b){ return a %b; } }.execute(3,4); </code></pre> http://stackoverflow.com/questions/1700934/final-methods-are-inlined/1701053#1701053 3 Answer by Steve B. for final methods are inlined? Steve B. 2009-11-09T13:41:58Z 2009-11-09T13:41:58Z <p>Interesting question, prompted me to look into it further. 2 interesting remarks I found -</p> <ul> <li>1 <a href="http://www.javaperformancetuning.com/tips/final.shtml" rel="nofollow">comment</a> that automatic inlining is a bug:</li> </ul> <blockquote> <p>Contrary to the implication of many tips, methods declared as final cannot be safely inlined by the compiler, because the method could have a non-final declaration at runtime.</p> <p>To see why, suppose the compiler looks at class A and subclass B, and sub-subclass C and sees a final method in A which it inlines into C. But then at runtime the versions loaded for A and B are different and the method is not final in A, and overridden in B. Then C uses the incorrectly inlined version. T</p> </blockquote> <p>And, a bit more authoritatively, from a <a href="http://java.sun.com/products/hotspot/whitepaper.html" rel="nofollow">sun whitepaper</a>, writing that methods can be left virtual,</p> <blockquote> <p>Because the Java HotSpot VM can automatically inline the vast majority of virtual method invocations, this performance penalty is dramatically reduced, and in many cases, eliminated altogether. </p> </blockquote> <p>Here's a more <a href="http://java.sun.com/developer/technicalArticles/Networking/HotSpot/inlining.html" rel="nofollow">direct reference</a> on the mechanism.</p> http://stackoverflow.com/questions/1694436/loading-from-jar-files-during-deployment-vs-development/1694470#1694470 0 Answer by Steve B. for loading from JAR files during deployment vs development Steve B. 2009-11-07T21:25:20Z 2009-11-07T21:25:20Z <p>How about setting a system property in your dev environment, via the -D switch? e.g. java -D:mypropertyname=mypropertyvalue</p> <p>You could set the property in ant scripts in your dev environment, other environments don't get the property: e.g. </p> <pre><code>public static boolean isDevEnvironment(){ return System.getProperty("mypropertyname")!=null;} </code></pre> <p>You might find a better way to hack it from one of the existing <a href="http://java.sun.com/javase/6/docs/api/java/lang/System.html#getProperties%28%29" rel="nofollow">System Properties</a></p> http://stackoverflow.com/questions/1683020/possible-to-rearrange-an-array-in-place-in-on/1683063#1683063 0 Answer by Steve B. for Possible to rearrange an array in place in O(N)? Steve B. 2009-11-05T19:46:45Z 2009-11-05T19:56:28Z <p>There's a <a href="http://www.itl.nist.gov/div897/sqg/dads/HTML/histogramSort.html" rel="nofollow">histogram sort</a>, though the running time is given as a bit higher than O(N) (N log log n).</p> http://stackoverflow.com/questions/1675342/attitudes-toward-foreign-programmers/1675595#1675595 1 Answer by Steve B. for Attitudes toward foreign programmers Steve B. 2009-11-04T18:00:55Z 2009-11-04T18:00:55Z <p>Specifically in answer to </p> <ul> <li>Will I have to deal with disrespect on a regular basis?</li> </ul> <p>I have worked in a fair number of shops here ( all in NYC) and have <em>never</em> seen this be an issue for anyone based on personality, race, ethnicity or nationality. I've occasionally seen it based on pure incompetence.</p> <p>One of the good things about this field is that it usually approaches (at least in the best places to work) a meritocracy. If it's not, or if you find yourself being disrespected or looked down on because of who you, then the place is socially/personally dysfunctional and you probably don't want to be working there anyway.</p> <p>As others have mentioned here, there are laws that protect you from discrimination or abuse at the workplace. Most employers take these issues very seriously, if for no other reason than fear of lawsuit.</p> http://stackoverflow.com/questions/1674556/finding-out-how-a-developer-handles-brownfields-projects/1674784#1674784 1 Answer by Steve B. for Finding out how a developer handles brownfields projects Steve B. 2009-11-04T16:01:23Z 2009-11-04T16:01:23Z <p>This sounds like a great interview question. Why not just ask them what steps they'd take on inheriting/maintaining/extending a badly written legacy codebase, or how do you determine when a codebase needs to be refactored? Another option would be to give them a medium sized piece of spaghetti code and ask them how they'd extend it. </p> <p>Lots of good suggestions for answers <a href="http://stackoverflow.com/questions/711722/how-to-save-my-sanity-while-maintaining-spaghetti-code/711782#711782">here</a>. </p> http://stackoverflow.com/questions/1673729/algorithm-for-list-identification-and-parsing/1673784#1673784 0 Answer by Steve B. for algorithm for list identification and parsing Steve B. 2009-11-04T13:36:15Z 2009-11-04T13:36:15Z <p>In java, a string tokenizer will do this (i.e. StringTokenizer(inputString, delimiterList))</p> <pre><code>StringTokenizer st = new StringTokenizer( "A B|C-D", " |-" ); while ( st.hasMoreTokens() ) { System.out.println( st.nextToken() ); } </code></pre> <p>prints </p> <p>A</p> <p>B</p> <p>C</p> <p>D</p> http://stackoverflow.com/questions/1668862/good-json-java-library 1 Good JSON Java Library? Steve B. 2009-11-03T17:22:42Z 2009-11-03T19:55:12Z <p>Can anyone post feedback on their experiences with various json libraries for java? In particular, does anyone have feedback on their experience with <a href="http://code.google.com/p/google-gson/" rel="nofollow">Google-gson</a>?</p> <p>(I'm aware that there's a nearly identical question <a href="http://stackoverflow.com/questions/338586/a-better-java-json-library">here</a>, but that's over a year old, so people may have different experiences now.)</p> http://stackoverflow.com/questions/1669689/pre-java-5-collections-and-the-unwillingness-to-change/1669749#1669749 1 Answer by Steve B. for Pre Java 5 collections and the unwillingness to change Steve B. 2009-11-03T19:52:47Z 2009-11-03T19:52:47Z <p>The benefit is that any callers can assume, not because they're familiar with the code or because they're pretty sure that they know how the map is constructed, but because the language enforces it, that the keys are strings. The heterogeneous nature of the values is also explicitly specified. </p> <p>It may seem silly, as you know that the code already works, but I've been in situations where you have to integrate legacy code or libs into a generic app, and the boundary between the known types and the unknown maps is painfully obvious. To the consumer of the map, you either have to </p> <ul> <li>assume the key is a string (bad practice)</li> <li>dig through the source (if you can) to convince yourself that the keys are always strings (avoiding this is reason enough to use generics)</li> <li>hack some kind of cast to make sure you get a string at the end, because you don't trust the code (e.g. String key=keyObject+"");</li> </ul> <p>You'd probably also waste time trying to decide if the values were typed as well.</p> <p>If you really, <em>really</em> want to avoid the generics I'd at the very least put a comment on the function that describes the return types.</p> http://stackoverflow.com/questions/1664201/unit-testing-with-the-mediator-pattern-all-private-to-public/1664348#1664348 2 Answer by Steve B. for Unit Testing with the Mediator Pattern - All Private to Public Steve B. 2009-11-02T23:17:16Z 2009-11-02T23:17:16Z <p>Not sure about c#, but in java you can declare something as package-level access (in java by omitting the access specifier). What I do is create a separate test hierarchy that parallels my package structure, so to test class com.a.b.c.MyClass, I'll have a test class com.a.b.c.MyClassTest, which can then legally access the package-access methods in MyClass. </p> <p>I don't so much like the idea of making everything public not only because of access issues, but because it clutters up the interface - I'd rather the public interface of the class express <em>what</em> it does, not <em>how</em> it does it, which is often where I end up if I expose methods I'd prefer to be private.</p> http://stackoverflow.com/questions/1642122/dynamically-creating-asynchronous-message-queues-in-java/1651183#1651183 0 Answer by Steve B. for Dynamically creating asynchronous message queues in Java Steve B. 2009-10-30T17:20:27Z 2009-10-30T17:20:27Z <p>I've done this with activemq - I actually posted a question on this at the time, as I had similar concerns (the JMS documentation at the time stated that this was not supported) and was assured that it was supported.</p> http://stackoverflow.com/questions/1770166/is-concurrenthashmap-get-guaranteed-to-see-a-previous-concurrenthashmap-put-b Comment by Steve B. on Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread? Steve B. 2009-11-20T13:01:12Z 2009-11-20T13:01:12Z The javadocs for ConcurrentHashMap state that &quot;retrieval operations do not block&quot;. Do you get the same results if you lower the concurrency level? How about substituting in a Collections.synchronized map to check that your test is correctly designed? http://stackoverflow.com/questions/1635719/isassignablefrom-function-of-class-java/1635731#1635731 Comment by Steve B. on isAssignableFrom function of Class.java Steve B. 2009-11-18T18:14:15Z 2009-11-18T18:14:15Z This sounds good, but as far as I can tell from the javadocs class.isAssignableFrom is checking by the class type- are you sure that will take the different classloader into account? http://stackoverflow.com/questions/1750273/question-on-java-generics-bounded-wildcard/1750354#1750354 Comment by Steve B. on Question on Java Generics Bounded Wildcard Steve B. 2009-11-17T17:23:11Z 2009-11-17T17:23:11Z +1 for a clear explanation of the differences. Minor quibble - I think you go too far in assuming the first is always the better choice - I'd say &quot;needless to say&quot; the better choice would depend on context. http://stackoverflow.com/questions/1750195/exception-thrown-after-processing-onsubmitaction Comment by Steve B. on Exception thrown after processing onSubmitAction Steve B. 2009-11-17T17:16:16Z 2009-11-17T17:16:16Z It would be helpful to post the stack trace. http://stackoverflow.com/questions/1709435/book-recommendation-for-unix-shell-commands/1709460#1709460 Comment by Steve B. on Book recommendation for Unix shell commands Steve B. 2009-11-11T21:20:26Z 2009-11-11T21:20:26Z I was going to add this. Great book. http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423998#423998 Comment by Steve B. on What's your favorite "programmer ignorance" pet peeve? Steve B. 2009-11-09T13:45:13Z 2009-11-09T13:45:13Z there can be a reason to write the constant 1st in java, though not with ints. if someValue is null, the test 'if (&quot;A&quot;.equals(someValue))' will return false, while the test 'if (someValue.equals(&quot;A&quot;)) will throw a null pointer. http://stackoverflow.com/questions/1668862/good-json-java-library Comment by Steve B. on Good JSON Java Library? Steve B. 2009-11-03T17:45:56Z 2009-11-03T17:45:56Z To get a better sense, given the large number of JSON libraries used, of the quality of the libraries, maintenance, people's experience with them, etc.etc. http://stackoverflow.com/questions/1615163/modifying-final-fields-in-java/1615218#1615218 Comment by Steve B. on Modifying final fields in Java Steve B. 2009-10-23T18:45:13Z 2009-10-23T18:45:13Z This is certainly part of the answer, but how is it that if you acces the string via the reflection field.get you get a different value than if you ask the object directly? http://stackoverflow.com/questions/1607334/java-serialization-problem/1607373#1607373 Comment by Steve B. on Java serialization problem Steve B. 2009-10-22T14:54:51Z 2009-10-22T14:54:51Z yes - as written, &quot;or somewhere ELSE that's not going to be called&quot;... http://stackoverflow.com/questions/1607318/linux-diff-and-patch-command-line-utilities-for-mysql-data-not-structure/1607344#1607344 Comment by Steve B. on Linux diff and patch command line utilities for MySQL data (not structure) Steve B. 2009-10-22T13:53:00Z 2009-10-22T13:53:00Z eeeeeeeeeeek. That sounds like fun. http://stackoverflow.com/questions/1601015/spring-syntax-for-setting-a-class-object/1601081#1601081 Comment by Steve B. on Spring syntax for setting a Class object? Steve B. 2009-10-21T14:39:30Z 2009-10-21T14:39:30Z Never mind, that exception was due to a misconfiguration:) Works fine. http://stackoverflow.com/questions/1601015/spring-syntax-for-setting-a-class-object/1601081#1601081 Comment by Steve B. on Spring syntax for setting a Class object? Steve B. 2009-10-21T14:28:09Z 2009-10-21T14:28:09Z I upvoted this, because it seemed like a good suggestion. Strangely enough, though, spring is complaining with a &quot;ClassNotFoundException&quot; for java.lang.Class. http://stackoverflow.com/questions/1601015/spring-syntax-for-setting-a-class-object/1601070#1601070 Comment by Steve B. on Spring syntax for setting a Class object? Steve B. 2009-10-21T14:23:38Z 2009-10-21T14:23:38Z no, that'll give you a ClassNotFound, as there's no such thing as a Foo.class class defined. http://stackoverflow.com/questions/1537714/disabling-compile-time-dependency-checking-when-compiling-java-classes/1537758#1537758 Comment by Steve B. on Disabling compile-time dependency checking when compiling Java classes Steve B. 2009-10-08T13:23:47Z 2009-10-08T13:23:47Z How could you have Foobar implement IFooBar without reference to the original FooBar? The compiler won't accept this even if the method signature is identical. http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420 Comment by Steve B. on Why do I need an IoC container as opposed to straightforward DI code? Steve B. 2009-10-07T20:56:59Z 2009-10-07T20:56:59Z I'm tempted to +1 this just for aggressively expressing the minority opinion, but I will refrain-I think you're partially correct in that IOC containers can make simple things complex, and make the code harder to trace (because so many of the code paths become indirect), but there are other benefits than what you mention, allowing for for a convenient way of scaffolding application resources. You'd have to handle that somewhere. I also don't think they're too complex, but then again I work somewhere where all the IOC is coded backwards(!) so maybe you shouldn't take my word for that.