User Andreas Petersson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T08:54:58Z http://stackoverflow.com/feeds/user/16542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/346411/project-layout-using-wicket 2 Project layout using Wicket Andreas Petersson 2008-12-06T15:44:46Z 2009-12-01T20:35:51Z <p>Where should I put the .html files in a wicket Application?</p> <p>my current project layout is as follows:</p> <pre><code>src/myproject --classes+ duplicated html files web --numerous .html files - previewed web/img --resource files such as css/png/js files </code></pre> <p>i want to avoid putting the html files on dupliate locations. what is a good non-redundant strategy to put the html and resource files? this is using tomcat so obviously, when deployed the directory structure changes to </p> <pre><code>img WEB-INF WEB-INF/classes/myproject </code></pre> <p>and the .html files stay at the toplevel, as well alongside the .class files - which is bad.</p> <p>of course, the preview function in plain html should have no problems with relative paths </p> <p>are there any examples for this? do i need special code (such as a IResourceStreamLocator) in my wicketappllication class? </p> <p>i am using wicket 1.4-rc1.</p> http://stackoverflow.com/questions/1700081/can-anybody-tell-me-why-is-so/1700117#1700117 17 Answer by Andreas Petersson for Can anybody tell me why is so? Andreas Petersson 2009-11-09T10:06:18Z 2009-11-09T10:27:33Z <p>when you compile a number literal in java and assign it to a Integer (capital I) the compile emits </p> <pre><code>Integer b2 =Integer.valueOf(127) </code></pre> <p>this line of code is also generated when you use autoboxing.</p> <p><code>valueOf</code> is implemented such that certain numbers are "pooled" and it returns the same instance for values smaller than 128. </p> <p>from the java 1.6 source code, line 621:</p> <pre><code> public static Integer valueOf(int i) { if(i &gt;= -128 &amp;&amp; i &lt;= IntegerCache.high) return IntegerCache.cache[i + 128]; else return new Integer(i); } </code></pre> <p>the value of high can be configured to another value, with the system property </p> <blockquote> <p>-Djava.lang.Integer.IntegerCache.high=999</p> </blockquote> <p>if you run your program with that system property, it will output true!!</p> <p>the obvious conclusion: never rely on two references being identical, always compare them with .equals() method.</p> <p>so b2.equals(b3) will print true for all logically equal values of b2,b3.</p> <p>note that is Integer cache is not there for performance reasons, but rather to comform to the <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/conversions.html#5.1.7" rel="nofollow">JLS, section 5.1.7</a>, that object identity must be given for values -128 to 127 inclusive.</p> http://stackoverflow.com/questions/1692863/what-is-the-difference-between-identity-and-equality-in-oop/1692882#1692882 8 Answer by Andreas Petersson for What is the difference between identity and equality in OOP? Andreas Petersson 2009-11-07T12:30:56Z 2009-11-07T12:48:54Z <p>basically,</p> <ul> <li><p>identity -> a variable holds the SAME instance as another variable.</p></li> <li><p>equality -> two (distinct) objects can be used interchangeably. they often have the same id.</p></li> </ul> <p>for example</p> <pre><code>Integer a = new Integer(1); Integer b = new Integer(1); </code></pre> <p>a is equal but not identical to b.</p> <pre><code>Integer x = new Integer(1); Integer y = x; </code></pre> <p>x is identical to y.</p> <p>of course, two identical objects are always equal.</p> <p>in java, equality is defined by the equals method. keep in mind, if you implement <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#equals%28java.lang.Object%29" rel="nofollow">equals</a> you must also implement <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#hashCode%28%29" rel="nofollow">hashCode</a>.</p> http://stackoverflow.com/questions/1660441/java-flag-to-enable-extended-serialization-debugging-info 0 Java flag to enable extended Serialization debugging info Andreas Petersson 2009-11-02T10:19:42Z 2009-11-02T11:32:32Z <p>i am currently struggling with HTTP Session replication on tomcat with complex objects.</p> <p>some objects implement Serializable but hold non-serializable members.</p> <p>unfortunately, the stacktraces do not provide much useful info here by default.</p> <p><strong>there is a flag -XX:???? to enable verbose class names</strong> in the stacktrace when a NotSerializableException occurrs. this flag would help me a lot finding the source of the error. but i forgot its name</p> <p>what is the name of the flag?</p> http://stackoverflow.com/questions/1660441/java-flag-to-enable-extended-serialization-debugging-info/1660583#1660583 4 Answer by Andreas Petersson for Java flag to enable extended Serialization debugging info Andreas Petersson 2009-11-02T10:56:18Z 2009-11-02T10:56:18Z <blockquote> <p>-Dsun.io.serialization.extendedDebugInfo=true</p> </blockquote> http://stackoverflow.com/questions/1657345/grouping-objects-by-date-am-i-an-idiot/1657432#1657432 1 Answer by Andreas Petersson for Grouping objects by date: am I an idiot? Andreas Petersson 2009-11-01T15:28:39Z 2009-11-01T15:36:39Z <p>java.util.Date is a quite poor abstraction for your need; it is IMO fair to stick to strings if nothing better is around, HOWEVER <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda-time</a> provides a good datatype for you: <a href="http://joda-time.sourceforge.net/api-release/org/joda/time/DateMidnight.html" rel="nofollow">DateMidnight</a> or alternatively <a href="http://joda-time.sourceforge.net/api-release/org/joda/time/LocalDate.html" rel="nofollow">LocalDate</a> if Activity is strictly timezome-independant.</p> <p>other than that, the code looks good to me, you might be able to shorten it a bit using an implementation of <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/index.html?com/google/common/collect/Multimap.html" rel="nofollow">Multimap</a>, to avoid messy null-checking code. to be honest, it doesn't get much shorter than your solution:</p> <pre><code> public List&lt;Activity&gt; groupedByDate(List&lt;Activity&gt; input) { //group by day final Multimap&lt;DateMidnight, Activity&gt; activityByDay = Multimaps.index(input, new Function&lt;Activity, DateMidnight&gt;() { @Override public DateMidnight apply(Activity from) { return new DateMidnight(from.activityDate); } }); //for each day, sum up amount List&lt;Activity&gt; ret = Lists.newArrayList(); for (DateMidnight day : activityByDay.keySet()) { Activity ins = new Activity(); ins.activityDate = day.toDate(); for (Activity activity : activityByDay.get(day)) { ins.amount+=activity.amount; } } return ret; } </code></pre> http://stackoverflow.com/questions/1654923/in-the-13-years-that-java-has-been-around-are-there-any-specific-examples-of-bac/1655215#1655215 4 Answer by Andreas Petersson for In the 13 years that Java has been around, are there any specific examples of backward incompatibilities? Andreas Petersson 2009-10-31T18:39:41Z 2009-10-31T18:48:51Z <p>obviously the naming convention of <a href="http://java.sun.com/j2se/codenames.html" rel="nofollow">release names</a> is <a href="http://weblogs.java.net/blog/2007/10/01/java-se-6-update-n-real-name-now" rel="nofollow">not backwards-compatible</a>.</p> <ul> <li>JDK 1.0 (January 23, 1996) </li> <li>JDK 1.1 (February 19, 1997) </li> <li>J2SE 1.2 (December 8, 1998) </li> <li>J2SE 1.3 (May 8, 2000) </li> <li>J2SE 1.4 (February 6, 2002)</li> <li>J2SE 5.0 (September 30, 2004) </li> <li>Java SE 6 (December 11, 2006) </li> <li>Java SE 6 Update 10, Update 12, Update 14, Update 16</li> <li>Java SE 7 ??? JDK7?</li> </ul> <p>(list from <a href="http://en.wikipedia.org/wiki/Java%5Fversion%5Fhistory" rel="nofollow">wikipedia</a>)</p> http://stackoverflow.com/questions/1655120/strange-java-cast-exception-why-cant-i-cast-long-to-a-float/1655129#1655129 4 Answer by Andreas Petersson for Strange Java cast exception. Why can't I cast Long to a Float? Andreas Petersson 2009-10-31T18:13:36Z 2009-10-31T18:31:45Z <p>it would help if you provide a stacktrace.</p> <p>otherwise, the standard solution is to replace <code>(Float) someLongValue</code> with <code>someLongValue.floatValue()</code></p> <p>if you are dealing with primitive types you can just cast from long to float, although it is a <a href="http://java.sun.com/docs/books/jls/second%5Fedition/html/conversions.doc.html" rel="nofollow">5.1.2 Widening Primitive Conversion</a>, but one that may lose precision. so careful!. obviously you have the wrapper type <a href="http://www.j2ee.me/j2se/1.5.0/docs/api/java/lang/Long.html" rel="nofollow">Long</a>, which cannot implicitly be converted, thus you get the classcastexception. this may be because of <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/autoboxing.html" rel="nofollow">autoboxing</a>, or explicit Long object creation.</p> <p>some more uninvited advice: if your valid values are decimals in the range of -10 to +10 the standard data type is <code>int</code> (primitive). avoid float if you mean exact numbers. <code>long</code> is also not optimal, because it is not fully atomic like int and it takes 2x the memory. if you allow a different state "not assigned" then <code>Integer</code>, which may take null is also ok.</p> http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642202#1642202 5 Answer by Andreas Petersson for What's the most elegant way to concatenate a list of values with delimiter in Java? Andreas Petersson 2009-10-29T08:04:29Z 2009-10-29T08:04:29Z <p>using <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/base/Joiner.html" rel="nofollow">google-collections joiner class</a>:</p> <pre><code>Joiner.on(",").join(list) </code></pre> <p>done.</p> http://stackoverflow.com/questions/950167/what-points-i-should-consider-to-create-api-for-a-new-website-i-am-building/1621554#1621554 0 Answer by Andreas Petersson for what points i should consider to create API for a new website i am building? Andreas Petersson 2009-10-25T17:55:43Z 2009-10-25T17:55:43Z <p>building a good api is hard and needs a lot of practice.</p> <p>the first api you build should be the api of your <strong>enemy's</strong> website.</p> <p>the second api is for your <strong>friend's</strong> website.</p> <p>the third api you build is for <strong>your</strong> customers.</p> http://stackoverflow.com/questions/1617106/efficient-way-to-compare-two-strings-ordering-of-characters-irrelevant/1617431#1617431 1 Answer by Andreas Petersson for Efficient way to compare two strings (ordering of characters irrelevant) Andreas Petersson 2009-10-24T09:00:15Z 2009-10-24T09:00:15Z <p>maybe not the fastet, but likely the shortest solution using java+google-collections+guava (for casting <code>char[]</code>-><code>List&lt;Character&gt;</code>)</p> <pre><code>import com.google.common.collect.ImmutableMultiset; import com.google.common.primitives.Chars; public class EqualsOrderignore { private static boolean compareIgnoreOrder(final String s1, String s2) { return ImmutableMultiset.copyOf(Chars.asList(s1.toCharArray())) .equals(ImmutableMultiset.copyOf(Chars.asList(s2.toCharArray()))); } } </code></pre> <p>runtime of this algorithm: O(s1.length + s2.length)</p> <p>i am quite convinced this solution will perform en-par with handcrafted O(N1+N2) solution on a -server VM.</p> <p>as a plus this solution will work for any instances of characters, not just a-Z.</p> http://stackoverflow.com/questions/1537557/shutdown-undeploy-tomcat-from-servlet 0 shutdown / undeploy tomcat from Servlet Andreas Petersson 2009-10-08T12:41:26Z 2009-10-08T12:48:18Z <p>I have an init servlet in Tomcat that loads critical data. soemtimes it is necessary to abort startup on certain errors.</p> <p>how do i gracefully shutdown the deployed app/ the whole app server without calling <code>System.exit(1)</code> </p> <p>i want to avoid calling the shutdown servlet via port, since this is not configured in my installation.</p> <p>there may be tasks that need to be run from listeners on shutdown defined in web.xml</p> http://stackoverflow.com/questions/1491795/olog-n-o1-why-not/1517787#1517787 0 Answer by Andreas Petersson for O(log N) == O(1) - Why not? Andreas Petersson 2009-10-05T00:35:19Z 2009-10-05T00:35:19Z <p>you are right, in many cases it does not matter for pracitcal purposes. but the key question is "how fast GROWS N". most algorithms we know of take the size of the input, so it grows linearily.</p> <p>but some algorithms have the value of N derived in a complex way. if N is "the number of possible lottery combinations for a lottery with X distinct numbers" it suddenly matters if your algorithm is O(1) or O(logN)</p> http://stackoverflow.com/questions/1509656/setting-up-dev-environment-for-java-development-q-1/1517607#1517607 1 Answer by Andreas Petersson for Setting up Dev environment for Java development (Q.1) Andreas Petersson 2009-10-04T22:45:59Z 2009-10-04T22:45:59Z <p>part2:</p> <p>for the second part, consider you can only gain about 4-5 seconds when switching from tomcat to jetty. </p> <p>typically the startup of a servlet container takes 30-60 seconds. for a real speed improvement consider using <a href="http://www.zeroturnaround.com/jrebel/" rel="nofollow">JRebel</a>. this allows you to see most changes in code instantly.</p> http://stackoverflow.com/questions/1516858/compound-string-key-in-hashmap/1517049#1517049 2 Answer by Andreas Petersson for Compound String key in HashMap Andreas Petersson 2009-10-04T18:27:41Z 2009-10-04T18:27:41Z <p>this is how a well-formed equals class with equals ans hashCode should look like: (generated with intellij idea, with null checks enabled)</p> <pre><code>class TheKey { public final String k1; public final String k2; public final String k3; public final boolean k4; public TheKey(String k1, String k2, String k3, boolean k4) { this.k1 = k1; this.k2 = k2; this.k3 = k3; this.k4 = k4; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; TheKey theKey = (TheKey) o; if (k4 != theKey.k4) return false; if (k1 != null ? !k1.equals(theKey.k1) : theKey.k1 != null) return false; if (k2 != null ? !k2.equals(theKey.k2) : theKey.k2 != null) return false; if (k3 != null ? !k3.equals(theKey.k3) : theKey.k3 != null) return false; return true; } @Override public int hashCode() { int result = k1 != null ? k1.hashCode() : 0; result = 31 * result + (k2 != null ? k2.hashCode() : 0); result = 31 * result + (k3 != null ? k3.hashCode() : 0); result = 31 * result + (k4 ? 1 : 0); return result; } } </code></pre> http://stackoverflow.com/questions/1516843/java-object-hashcode-result-constant-across-all-jvms-systems/1516877#1516877 0 Answer by Andreas Petersson for Java, Object.hashCode() result constant across all JVMs/Systems? Andreas Petersson 2009-10-04T17:02:17Z 2009-10-04T17:02:17Z <p>first of all, the result of hashCode depends heavily on the Object type and its implementation. every class including its subclasses can define its own behavior. you can rely on it following the general contract as outlined in the javadoc as well as in other answers. but the value is not required to stay the same after a VM restart. especially if it depends on the .hashCode implementations of thrid party classes.</p> <p>when referring to the concrete implementation of the String class, you should not depend on the return value. if you program is executed in a different VM, it could potentially change.</p> <p>if you refer solely to the Sun Vm, it could be argued that Sun will not break - even badly programmed - existing code. <strong>so "test".hashCode() will always return exactly 3556498 for any version of the Sun VM</strong>. </p> <p>if you want to deliberatly shoot yourself in the foot, go ahead and depend on this. people who will need to fix your code running on the "2015 Nintendo Java VM for Hairdryer" will cry out your name at night.</p> http://stackoverflow.com/questions/1488412/how-many-scala-web-frameworks-are-there/1488634#1488634 2 Answer by Andreas Petersson for How many Scala web-frameworks are there? Andreas Petersson 2009-09-28T18:35:59Z 2009-09-28T18:35:59Z <p>it must be noted that there is also a considerable interest in wicket+scala. wicket fits scala suprisingly well. if you want to take advantage of the very mature wicket project and its ecosystem (extensions) plus the concise syntax and productivity advantage of scala, this one may be for you! </p> <p><a href="http://technically.us/code/x/the-escape-hatch" rel="nofollow">some prosa</a></p> <p><a href="http://www.footprint.de/fcc/wp-content/uploads/2009/02/london-wicket.pdf" rel="nofollow">presentation</a></p> <p><a href="http://martijndashorst.com/blog/2007/06/19/10-steps-to-successful-entry-to-wickets-club-scala/" rel="nofollow">some experience w+s</a></p> <p><a href="http://www.nabble.com/Announcing%3A-Scala-Wicket-Extensions-Project-td24975012.html" rel="nofollow">announcments with reference to the project for the glue code to bind scala closures to models</a></p> http://stackoverflow.com/questions/1453171/n-nn-or-remove-diacritical-marks-from/1453284#1453284 9 Answer by Andreas Petersson for ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ȵ --> n or Remove diacritical marks from unicode chars Andreas Petersson 2009-09-21T07:43:40Z 2009-09-21T07:56:37Z <p>i have done this recently in java:</p> <pre><code>public static final Pattern DIACRITICS_AND_FRIENDS = Pattern.compile("[\\p{InCombiningDiacriticalMarks}\\p{IsLm}\\p{IsSk}]+"); private static String stripDiacritics(String str) { str = Normalizer.normalize(str, Normalizer.Form.NFD); str = DIACRITICS_AND_FRIENDS.matcher(str).replaceAll(""); return str; } </code></pre> <p>this will do as you specified: stripDiacritics(Björn) = Bjorn</p> <p>but it will fail on f. ex Białystok, because the ł character is not diacritic.</p> <p>if you want to have a full-blown string simplifier you will need a second cleanup round, for some more special characters that are not diacritics. is this map i have included the most common special characters that appear in our customer names. it is not a complete list, but it will give you the idea how to do extend it. the immutableMap is just a simple class from google-collections.</p> <pre><code>public class StringSimplifier { public static final char DEFAULT_REPLACE_CHAR = '-'; public static final String DEFAULT_REPLACE = String.valueOf(DEFAULT_REPLACE_CHAR); private static final ImmutableMap&lt;String, String&gt; NONDIACRITICS = ImmutableMap.&lt;String, String&gt;builder() //remove crap strings with no sematics .put(".", "") .put("\"", "") .put("'", "") //keep relevant characters as seperation .put(" ", DEFAULT_REPLACE) .put("]", DEFAULT_REPLACE) .put("[", DEFAULT_REPLACE) .put(")", DEFAULT_REPLACE) .put("(", DEFAULT_REPLACE) .put("=", DEFAULT_REPLACE) .put("!", DEFAULT_REPLACE) .put("/", DEFAULT_REPLACE) .put("\\", DEFAULT_REPLACE) .put("&amp;", DEFAULT_REPLACE) .put(",", DEFAULT_REPLACE) .put("?", DEFAULT_REPLACE) .put("°", DEFAULT_REPLACE) //remove ?? is diacritic? .put("|", DEFAULT_REPLACE) .put("&lt;", DEFAULT_REPLACE) .put("&gt;", DEFAULT_REPLACE) .put(";", DEFAULT_REPLACE) .put(":", DEFAULT_REPLACE) .put("_", DEFAULT_REPLACE) .put("#", DEFAULT_REPLACE) .put("~", DEFAULT_REPLACE) .put("+", DEFAULT_REPLACE) .put("*", DEFAULT_REPLACE) //replace non-diacritics as their equivalent chars .put("\u0141", "l") // BiaLystock .put("\u0142", "l") // Bialystock .put("ß", "ss") .put("æ", "ae") .put("ø", "o") .put("©", "c") .put("\u00D0", "d") // all Ð ð from http://de.wikipedia.org/wiki/%C3%90 .put("\u00F0", "d") .put("\u0110", "d") .put("\u0111", "d") .put("\u0189", "d") .put("\u0256", "d") .put("\u00DE", "th") // thorn Þ .put("\u00FE", "th") // thorn þ .build(); public static String simplifiedString(String orig) { String str = orig; if (str == null) { return null; } str = stripDiacritics(str); str = stripNonDiacritics(str); if (str.length() == 0) { // ugly special case to work around non-existing empty strings in oracle. store original crapstring as simplified.. // would return empty string if oracle could store it. return orig; } return str.toLowerCase(); } private static String stripNonDiacritics(String orig) { StringBuffer ret = new StringBuffer(); String lastchar = null; for (int i = 0; i &lt; orig.length(); i++) { String source = orig.substring(i, i + 1); String replace = NONDIACRITICS.get(source); String toReplace = replace == null ? String.valueOf(source) : replace; if (DEFAULT_REPLACE.equals(lastchar) &amp;&amp; DEFAULT_REPLACE.equals(toReplace)) { toReplace = ""; } else { lastchar = toReplace; } ret.append(toReplace); } if (ret.length() &gt; 0 &amp;&amp; DEFAULT_REPLACE_CHAR == ret.charAt(ret.length() - 1)) { ret.deleteCharAt(ret.length() - 1); } return ret.toString(); } /* special regexp char ranges relevant for simplification -&gt; see http://docstore.mik.ua/orelly/perl/prog3/ch05_04.htm InCombiningDiacriticalMarks: special marks that are part of "normal" ä, ö, î etc.. IsSk: Symbol, Modifier see http://www.fileformat.info/info/unicode/category/Sk/list.htm IsLm: Letter, Modifier see http://www.fileformat.info/info/unicode/category/Lm/list.htm */ public static final Pattern DIACRITICS_AND_FRIENDS = Pattern.compile("[\\p{InCombiningDiacriticalMarks}\\p{IsLm}\\p{IsSk}]+"); private static String stripDiacritics(String str) { str = Normalizer.normalize(str, Normalizer.Form.NFD); str = DIACRITICS_AND_FRIENDS.matcher(str).replaceAll(""); return str; } } </code></pre> http://stackoverflow.com/questions/1418966/in-regex-how-do-you-find-a-line-that-contains-no-more-than-3-unique-characters/1418984#1418984 0 Answer by Andreas Petersson for In RegEx, how do you find a line that contains no more than 3 unique characters? Andreas Petersson 2009-09-13T22:09:56Z 2009-09-13T22:09:56Z <p>for me - as a programmer with fair-enough regular expression knowledge this sounds not like a problem that you can solve using Regexp only.</p> <p>more likely you will need to build a hashMap/array data structure key: character value:count and iterate the large text file, rebuilding the map for each line. at each new character check if the already-encountered character count is 2, if so, skip current line.</p> <p>but im keen to be suprised if one mad regexp hacker will come up with a solution.</p> http://stackoverflow.com/questions/1409523/hibernate-how-to-persist-a-new-item-in-a-collection-without-loading-the-entire/1409643#1409643 0 Answer by Andreas Petersson for Hibernate - How to persist a new item in a Collection without loading the entire Collection Andreas Petersson 2009-09-11T08:13:26Z 2009-09-11T08:13:26Z <p>the way this is typically done by me, is to define the collection as "inverse". </p> <p>that roughly means: the primary definition of the 1-N association is done at the "N" end. if you want to add something to the collection you alter the associated object of the detail data.</p> <p>a small xml example:</p> <pre><code>&lt;class name="common.hibernate.Person" table="person"&gt; &lt;id name="id" type="long" column="PERSON_ID"&gt; &lt;generator class="assigned"/&gt; &lt;/id&gt; &lt;property name="name"/&gt; &lt;bag name="adressen" inverse="true"&gt; &lt;key column="PERSON_ID"/&gt; &lt;one-to-many class="common.hibernate.Adresse"/&gt; &lt;/bag&gt; &lt;/class&gt; &lt;class name="common.hibernate.Adresse" table="ADRESSE"&gt; &lt;id name="id" column="ADRESSE_ID"/&gt; &lt;property name="street"/&gt; &lt;many-to-one name="person" column="PERSON_ID"/&gt; &lt;/class&gt; </code></pre> <p>then the update is done exclusively in Adresse:</p> <pre><code>Adresse a = ...; a.setPerson(me); a.setStreet("abc"); Session s = ...; s.save(a); </code></pre> <p>done. dou did not even touch the collection. consider it read-only, which may be very practical for querying with hql, and iterating and displaying it.</p> http://stackoverflow.com/questions/1327503/how-to-insert-an-optimizer-hint-to-hibernate-criteria-api-query 1 How to insert an "Optimizer hint" to Hibernate criteria api query Andreas Petersson 2009-08-25T10:56:59Z 2009-08-25T13:39:31Z <p>i have a hibernate query that is dynamically put together using the criteria api. it generates queries that are unbearably slow, if executed as-is.</p> <p>but i have noted they are about 1000% faster if I prepend /*+ FIRST_ROWS(10) */ to the query. how can i do this with the criteria api?</p> <p>i tried criteria.setComment(..), but this seems to be ignored.</p> <p>in the hibernate docs, 3.4.1.7. Query hints are mentioned, but it clearly states: "Note that these are not SQL query hints"</p> <p>the result of the query will be paginated, so in 99% of the cases i will display the results 1-10.</p> http://stackoverflow.com/questions/1322162/how-to-pass-map-to-oracle-pl-sql-function/1322314#1322314 0 Answer by Andreas Petersson for How to pass Map to Oracle PL/SQL function? Andreas Petersson 2009-08-24T13:09:15Z 2009-08-24T13:09:15Z <p><a href="http://download.oracle.com/docs/cd/B10501%5F01/java.920/a96654/oraoot.htm" rel="nofollow">down this path lies horror and despair. i have seen it.</a></p> http://stackoverflow.com/questions/1318545/time-complexity-o-of-ispalindrome/1318637#1318637 4 Answer by Andreas Petersson for Time Complexity O() of isPalindrome() Andreas Petersson 2009-08-23T14:02:04Z 2009-08-24T11:46:54Z <p><s>this is most likely the most efficient implementation in java:</s></p> <pre><code> public static boolean isP(String s) { char[] chars = s.toCharArray(); for (int i = 0; i &lt; (chars.length / 2); i++) { if (chars[i] != chars[(chars.length - i - 1)]) return false; } return true; } </code></pre> <p>benefits:</p> <ul> <li>returns on first sight of difference.</li> <li><s>uses direct char[] access to avoid aboundary checks done in charAt</s></li> <li>only iterates half the string, as opposed the full string.</li> </ul> <p>is - like all other proposed solutions still O(N)</p> <p>just measured the times fo the presented solutions for a really big string (times in nanoseconds)</p> <pre><code> Aran: 32244042 Andreas: 60787894 Paul Tomblin: 18387532 </code></pre> <p>first, the measurements above were done with the <strong>client vm</strong>. thus the calculation i &lt; (chars.length / 2) was not inlined as a constant. <strong>using the -server Vm parameter</strong> gave a much better result:</p> <pre><code> Aran: 18756295 Andreas: 15048560 Paul Tomblin: 17187100 </code></pre> <h2>To drive it a bit extreme:</h2> <p>a word of warning first: </p> <h2>DO NOT USE THIS CODE IN ANY PROGRAM YOU INTEND TO USE/SHIP. </h2> <p>it contains hidden bugs and does not obey to the java api and has not error handling, as pointed out in the comments. it serves purely to demonstrate the theoretical performance improvements obtainable by dirty tricks.</p> <p>there is some overhead when copying the array from the string, because the string class internally makes a defensive copy.</p> <p>if we obtain the original char[] from the string directly we can squeeze out a bit of performance, at the cost of using reflection and unsave operations on the string. this gets us another 20% performance.</p> <pre><code>public static boolean isPReflect(String s) { char[] chars = null; try { final Field f = s.getClass().getDeclaredField("value"); f.setAccessible(true); chars = (char[]) f.get(s); } catch (IllegalAccessException e) { } catch (NoSuchFieldException e) { } final int lenToMiddle = chars.length / 2; for (int i = 0; i &lt; lenToMiddle; i++) { if (chars[i] != chars[(chars.length - i - 1)]) return false; } return true; } </code></pre> <p>times: </p> <pre><code> Aran: 18756295 Andreas1: 15048560 Andreas2: 12094554 Paul Tomblin: 17187100 </code></pre> http://stackoverflow.com/questions/1318770/impressive-examples-in-java/1318820#1318820 2 Answer by Andreas Petersson for Impressive examples in Java? Andreas Petersson 2009-08-23T15:33:43Z 2009-08-23T15:33:43Z <p>if you want to get some quick Ahh's and Oooh's write a trivial app - maybe swing - and show them how they can seamlessly start the same .jar file via java web start on 3-4 different operating systems - windows, linux, osx.</p> http://stackoverflow.com/questions/1318545/time-complexity-o-of-ispalindrome/1318567#1318567 1 Answer by Andreas Petersson for Time Complexity O() of isPalindrome() Andreas Petersson 2009-08-23T13:35:54Z 2009-08-23T13:35:54Z <p>so first of all, what is the method supposed to do?</p> <p>my guess: determine if a strinig is a palindorome.</p> <p>quite obviously, you will not be able to get it down under O(N)</p> <p>O(N+3) == O(N)</p> <p>the other question is, is it the most efficient solution? maybe not.</p> <p>room for improvement: 1) cut it in half. you check all characters two times.(like Michiel Buddingh suggested.)</p> <p>2) obtain the char array beforehand, that spares you some index checks that occur inside chatAt()</p> <p>all other operations, charAt() length() are O(1) with the standard String implementation.</p> http://stackoverflow.com/questions/1310009/java-possible-to-have-mutual-final-class-references/1310323#1310323 0 Answer by Andreas Petersson for Java: Possible to have mutual, final class references? Andreas Petersson 2009-08-21T06:24:00Z 2009-08-21T06:24:00Z <p>if you use a Di container such as guice, you can acieve this without obvious reference passing inside the constructor - which may be error-prone as pointed out before.</p> <p>declare dependency a-b and b-a and inject one of them in another class. guice will do some magic to allow both fields to be final. basically it will inject one proxy first and set its delegator later.</p> <p>do you need a code sample for this?</p> http://stackoverflow.com/questions/1288591/targeting-a-java-app-at-oracle-and-postgres/1290422#1290422 2 Answer by Andreas Petersson for Targeting a Java app at Oracle AND Postgres Andreas Petersson 2009-08-17T21:00:42Z 2009-08-19T08:18:10Z <p>along with hibernate i can recommend <a href="http://www.hibernatespatial.org/" rel="nofollow">Hibernate Spatial</a> , an extension which supports Mysql, Oracle and Postgre, with their respective GIS extensions.</p> <p>some pitfalls i encountered:</p> <p>be aware, the configuration of the dialects was not trivial to do correctly. make sure the dialects are not reconfigured for every statement, as it happened to me. </p> <p>depending on the features from hibernatespatial you use you might get locked in on a specific version number of hibernate</p> <p>you can use the criteria api ONLY, hql is not directly supported.</p> <p>my code using hibernatespatial looks like this:</p> <pre><code> if (query.getMaxDistance() != null &amp;&amp; query.getCenter() != null) { basicCriteria.add(SpatialRestrictions.within("coordinate", GeoidCircleFactory.circle(query.getCenter(), query.getMaxDistance()))); } </code></pre> <p>you will suffer from some of the quite dire constraints postgis and others are under. i would recommend to relax some of your application needs to better fit the possibilities of your DB. for example, queries in "angle space" are much easier to do than in "euclidean space". </p> <p>the code contained in GeoidCircleFactory looks quite scary... :)</p> http://stackoverflow.com/questions/1292037/take-a-screenshot-of-a-url-programmatically-in-google-app-engine/1292070#1292070 1 Answer by Andreas Petersson for Take a screenshot of a URL programmatically in Google App Engine? Andreas Petersson 2009-08-18T06:02:04Z 2009-08-18T06:02:04Z <p>i would use a public webservice for that. something like <a href="http://www.girafa.com/" rel="nofollow">girafa</a>. if you need shots for all browsers <a href="http://browsershots.org" rel="nofollow">browsershots</a> is the one for you.</p> http://stackoverflow.com/questions/1254282/creating-a-proxy-site/1254302#1254302 2 Answer by Andreas Petersson for creating a proxy site Andreas Petersson 2009-08-10T11:06:17Z 2009-08-11T14:13:23Z <p>That sounds like a perfect way to get your site banned in Turkey, as well.. </p> <p>To enable users from Turkey to browse the web without restrictions, I would recommend something like <a href="http://www.torproject.org/" rel="nofollow">TOR</a> </p> <p>I don't have experience if tor works with YouTube.</p> http://stackoverflow.com/questions/1143499/test-if-spring-scope-is-active 1 Test if Spring Scope is active Andreas Petersson 2009-07-17T14:05:20Z 2009-08-10T19:40:15Z <p>How can I test if the Session scope is active in Spring? for example, at startup some classes need a User object which is Session scoped, than i return a mock User object.</p> <p>the bean in question is declared with aop:scoped-proxy. how can i test if the session scope is active?</p> http://stackoverflow.com/questions/1692863/what-is-the-difference-between-identity-and-equality-in-oop/1692882#1692882 Comment by Andreas Petersson on What is the difference between identity and equality in OOP? Andreas Petersson 2009-11-10T16:06:39Z 2009-11-10T16:06:39Z this is wrong metroid. as noted in a different answer by me, the compile can an will not do tricks when allocating objects with &quot;new&quot; operator. only if you create them with Integer.valueof(1) the objects will be pooled. http://stackoverflow.com/questions/1700081/can-anybody-tell-me-why-is-so/1700117#1700117 Comment by Andreas Petersson on Can anybody tell me why is so? Andreas Petersson 2009-11-09T15:28:42Z 2009-11-09T15:28:42Z no, this is wrong. new Integer(1) == new Integer(1) is false regardless of the jvm. AFAIK no compiler will cheat at the &quot;new&quot; keyword. it MUST always instantiate a new object. http://stackoverflow.com/questions/1699376/why-cant-scalac-optimize-tail-recursion-in-certain-scenarios Comment by Andreas Petersson on Why can't scalac optimize tail recursion in certain scenarios? Andreas Petersson 2009-11-09T11:25:52Z 2009-11-09T11:25:52Z note that JVM-level tailcall optimisation is contributed for java 7 see <a href="http://wikis.sun.com/display/mlvm/TailCalls" rel="nofollow">wikis.sun.com/display/mlvm/TailCalls</a> http://stackoverflow.com/questions/1700081/can-anybody-tell-me-why-is-so/1700117#1700117 Comment by Andreas Petersson on Can anybody tell me why is so? Andreas Petersson 2009-11-09T10:14:27Z 2009-11-09T10:14:27Z note that values smaller than 127 will be ignored by java and values bigger than Integer.MAX_VALUE-128 will be capped. http://stackoverflow.com/questions/1692863/what-is-the-difference-between-identity-and-equality-in-oop/1692886#1692886 Comment by Andreas Petersson on What is the difference between identity and equality in OOP? Andreas Petersson 2009-11-07T12:51:12Z 2009-11-07T12:51:12Z strings are sometimes interned, for example when they are compile-time constants. http://stackoverflow.com/questions/1660441/java-flag-to-enable-extended-serialization-debugging-info/1660583#1660583 Comment by Andreas Petersson on Java flag to enable extended Serialization debugging info Andreas Petersson 2009-11-02T18:44:05Z 2009-11-02T18:44:05Z I need to wait 2 days before i can mark this as accepted, due to SO rules. i found the answer at <a href="http://mfondo.blogspot.com/2007/10/java-serialization-debugging.html" rel="nofollow">mfondo.blogspot.com/2007/10/&hellip;</a> http://stackoverflow.com/questions/1660441/java-flag-to-enable-extended-serialization-debugging-info Comment by Andreas Petersson on Java flag to enable extended Serialization debugging info Andreas Petersson 2009-11-02T11:39:13Z 2009-11-02T11:39:13Z yes. HttpSession must only contain serializable objects or else it won't persist restart and won't be able to be replicated to other tomcat nodes.. http://stackoverflow.com/questions/1657345/grouping-objects-by-date-am-i-an-idiot Comment by Andreas Petersson on Grouping objects by date: am I an idiot? Andreas Petersson 2009-11-01T14:57:25Z 2009-11-01T14:57:25Z private function ? is this java? http://stackoverflow.com/questions/1655120/strange-java-cast-exception-why-cant-i-cast-long-to-a-float/1655129#1655129 Comment by Andreas Petersson on Strange Java cast exception. Why can't I cast Long to a Float? Andreas Petersson 2009-10-31T18:52:30Z 2009-10-31T18:52:30Z take a look at the source of java.lang.Float (line 404 in 1.6): public static Float valueOf(float f) { return new Float(f); } http://stackoverflow.com/questions/1655120/strange-java-cast-exception-why-cant-i-cast-long-to-a-float/1655129#1655129 Comment by Andreas Petersson on Strange Java cast exception. Why can't I cast Long to a Float? Andreas Petersson 2009-10-31T18:33:31Z 2009-10-31T18:33:31Z if autoboxing is enabled, Float.valueOf(long.floatValue()) and just long.floatValue() should be equally good. http://stackoverflow.com/questions/1655120/strange-java-cast-exception-why-cant-i-cast-long-to-a-float Comment by Andreas Petersson on Strange Java cast exception. Why can't I cast Long to a Float? Andreas Petersson 2009-10-31T18:23:10Z 2009-10-31T18:23:10Z eventually provide the sourcecode around Timeline.java:59 to find a solution. http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642202#1642202 Comment by Andreas Petersson on What's the most elegant way to concatenate a list of values with delimiter in Java? Andreas Petersson 2009-10-29T11:48:55Z 2009-10-29T11:48:55Z @Thorbjorn: see <a href="http://www.youtube.com/watch?v=ZeO_J2OcHYM" rel="nofollow">youtube.com/watch?v=ZeO_J2OcHYM</a> and <a href="http://www.youtube.com/watch?v=9ni_KEkHfto" rel="nofollow">youtube.com/watch?v=9ni_KEkHfto</a> for an in-depth explanation why you should use G-C. it simplifies a lot of the boilerplate when using almost any complex data structure in java. http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642202#1642202 Comment by Andreas Petersson on What's the most elegant way to concatenate a list of values with delimiter in Java? Andreas Petersson 2009-10-29T08:35:19Z 2009-10-29T08:35:19Z once you take a look at the api, you will use ist for much more than just string joining. http://stackoverflow.com/questions/1621445/alternative-to-if-statement-in-java/1621479#1621479 Comment by Andreas Petersson on alternative to if statement in java Andreas Petersson 2009-10-25T17:59:22Z 2009-10-25T17:59:22Z if many cases this makes sense. see <a href="http://www.youtube.com/watch?v=4F72VULWFvc" rel="nofollow">youtube.com/watch?v=4F72VULWFvc</a> - google tech talks. (The Clean Code Talks -- Inheritance, Polymorphism, &amp; Testing) i consider the downvote wrong. http://stackoverflow.com/questions/1537557/shutdown-undeploy-tomcat-from-servlet/1537584#1537584 Comment by Andreas Petersson on shutdown / undeploy tomcat from Servlet Andreas Petersson 2009-10-08T14:28:12Z 2009-10-08T14:28:12Z its more about shutting down utility threads and correctly writing logs