User Esko - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:00:56Z http://stackoverflow.com/feeds/user/44523 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807390/grails-security/1807450#1807450 2 Answer by Esko for Grails security Esko 2009-11-27T08:37:54Z 2009-11-30T07:24:12Z <p><a href="http://www.jsecurity.org/" rel="nofollow">JSecurity</a> actually became an Apache project under the name <a href="http://incubator.apache.org/ki/" rel="nofollow">Apache Ki</a> a while ago and they weren't happy with the name change for some reason and changed it to <a href="http://cwiki.apache.org/SHIRO/" rel="nofollow">Apache Shiro</a> soon after that. Also <a href="http://www.grails.org/Stark+Security+Plugin" rel="nofollow">Stark</a> is just a grails plugin wrapper for <a href="http://static.springsource.org/spring-security/site/" rel="nofollow">Spring Security</a> and acegi is the origin of Spring Security project.</p> <p>So which one to use?</p> <p><strong>Firstly</strong>, Spring Security is a matured security API and already widely used so from stability, support and especially security viewpoint it is a good choice. Shiro unfortunately loses a bit in this since as far as I know, it's still lacking in widespread adoption.</p> <p><strong>Secondly</strong>, they way the security framework actually behaves is quite important, it has to be able to enable you to do your favorite scheme of securing your application. For example while some people like the way Shiro works (<em><a href="http://cwiki.apache.org/SHIRO/quickstart.html" rel="nofollow">see this tutorial</a>, esp. the part under headline "Quickstart.java"</em>) others couldn't live without Spring Security's Spring-esque stuff and so on and so forth. Basically you need to try both and figure out if they meet your needs from usability point of view.</p> <p><strong>Thirdly</strong>, be sure of the actual security! Spring Security can be quaranteed to be secure, Shiro is <em>most likely</em> secure because no widespread adoption hides security issues easily, see for example <a href="http://secunia.com/advisories/search/?search=Firefox" rel="nofollow">Firefox vulnerabilities</a> to see how increased user base starts to affect the actual security of the application in the long run.</p> <p>To end this, if I had to choose for you, I'd pick Spring Security because it's widely used, it's quaranteed to be secure and already integrated with Grails. JSecurity/Ki/Shiro isn't bad at all and I've used it for a while, but at the moment it's in some sort of limbo state for who knows what reason and for a security framework that's just unacceptable.</p> http://stackoverflow.com/questions/1802975/unit-testing-modalwindows-content-refresh-fails-while-the-actual-functionality-w 0 Unit testing ModalWindow's content refresh fails while the actual functionality works as expected - what am I doing wrong? Esko 2009-11-26T10:48:26Z 2009-11-29T13:45:34Z <p>So, I've spent a couple of hours first trying to "fix" this myself and then Googling like a madman but didn't find anything that would've helped so now I'm here.</p> <p>Basically I have a custom <code>Panel</code> within Wicket's own <code>ModalWindow</code> and since I like unit testing, I want to test it. The specific behavior here is refreshing the <code>ModalWindow</code>'s content: In my actual code from where I extracted this the Ajax event handling actually reloads new stuff to the content panel, I just removed those to make this shorter.</p> <p>So, here's the <code>Panel</code>'s code</p> <pre><code>package wicket.components; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.markup.html.form.AjaxButton; import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow; import org.apache.wicket.markup.html.form.Form; import org.apache.wicket.markup.html.panel.Panel; import org.apache.wicket.model.*; public class MyModalWindowPanel extends Panel { private Form form; private ModalWindow modal; public MyModalWindowPanel(String id, ModalWindow modal) { super(id); this.setOutputMarkupId(true); this.modal = modal; initializeForm(); addBasicDataFieldsToForm(); add(campaignForm); } private void initializeForm() { form = new Form("form"); form.setOutputMarkupId(true); } private void addBasicDataFieldsToForm() { campaignForm.add(new AjaxButton("infoSubmit", new Model&lt;String&gt;("Ajaxy Click")) { protected void onSubmit(AjaxRequestTarget target, Form&lt;?&gt; form) { modal.setContent(new MyModalWindowPanel(modal.getContentId(), modal)); modal.show(target); } }); } } </code></pre> <p>and the corresponding markup</p> <pre><code>&lt;wicket:panel&gt; &lt;form wicket:id="form"&gt; &lt;input type="submit" value="Ajaxy Click" wicket:id="infoSubmit" /&gt; &lt;/form&gt; &lt;/wicket:panel&gt; </code></pre> <p><strong>Do note that when run in servlet container such as Tomcat, this works correctly - there's no functional bugs here!</strong></p> <p>So what's the problem then? I'm not seemingly able to get the <em>unit test</em> for this to work! My test class for the panel looks like this</p> <pre><code>package wicket.components; import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow; import org.apache.wicket.markup.html.panel.Panel; import org.apache.wicket.util.tester.*; import junit.framework.TestCase; public class MyModalWindowPanelTestCase extends TestCase { private WicketTester tester; private ModalWindow modal; @Override protected void setUp() throws Exception { tester = new WicketTester(); modal = new ModalWindow("modal"); tester.startPanel(new TestPanelSource() { public Panel getTestPanel(String id) { return new MyModalWindowPanel(id, modal); } }); } public void testReloadingPanelWorks() throws Exception { // the next line fails! tester.executeAjaxEvent("panel:campaignForm:campaignInfoSubmit", "onclick"); tester.assertNoErrorMessage(); } } </code></pre> <p>and here's the resulting stacktrace of running that</p> <pre><code>java.lang.IllegalStateException: No Page found for component [MarkupContainer [Component id = modal]] at org.apache.wicket.Component.getPage(Component.java:1763) at org.apache.wicket.RequestCycle.urlFor(RequestCycle.java:872) at org.apache.wicket.Component.urlFor(Component.java:3295) at org.apache.wicket.behavior.AbstractAjaxBehavior.getCallbackUrl(AbstractAjaxBehavior.java:124) at org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.getCallbackScript(AbstractDefaultAjaxBehavior.java:118) at org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.getCallbackScript(AbstractDefaultAjaxBehavior.java:106) at org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow$WindowClosedBehavior.getCallbackScript(ModalWindow.java:927) at org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.getWindowOpenJavascript(ModalWindow.java:1087) at org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.show(ModalWindow.java:352) at wicket.components.MyModalWindowPanel$1.onSubmit(MyModalWindowPanel.java:45) at org.apache.wicket.ajax.markup.html.form.AjaxButton$1.onSubmit(AjaxButton.java:102) at org.apache.wicket.ajax.form.AjaxFormSubmitBehavior.onEvent(AjaxFormSubmitBehavior.java:143) at org.apache.wicket.ajax.AjaxEventBehavior.respond(AjaxEventBehavior.java:177) at org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.onRequest(AbstractDefaultAjaxBehavior.java:299) at org.apache.wicket.util.tester.BaseWicketTester.executeAjaxEvent(BaseWicketTester.java:1236) at org.apache.wicket.util.tester.BaseWicketTester.executeAjaxEvent(BaseWicketTester.java:1109) at wicket.components.MyModalWindowPanelTestCase.testReloadingPanelWorks(MyModalWindowPanelPanelTestCase.java:31) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at junit.framework.TestCase.runTest(TestCase.java:168) at junit.framework.TestCase.runBare(TestCase.java:134) at junit.framework.TestResult$1.protect(TestResult.java:110) at junit.framework.TestResult.runProtected(TestResult.java:128) at junit.framework.TestResult.run(TestResult.java:113) at junit.framework.TestCase.run(TestCase.java:124) at junit.framework.TestSuite.runTest(TestSuite.java:232) at junit.framework.TestSuite.run(TestSuite.java:227) at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:81) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) </code></pre> <p>So, <strong>how can/should I fix my unit test so that it would pass?</strong></p> http://stackoverflow.com/questions/1813383/one-css-file-or-individual-css-files-for-each-page/1813421#1813421 0 Answer by Esko for One CSS File or individual CSS files for each page? Esko 2009-11-28T19:01:39Z 2009-11-28T19:01:39Z <p>Since I'm actually an actual web programmer (Java's web programming stuff, not scripting such as PHP) I have to give you an opinion I've never seen any actual web <em>designer</em> give:</p> <p>Please go ahead and split your CSS files to multiple, logical partitions wherever possible! If you have a hugely stylized table, collect its CSS stuff to one file, also collect the base stylings of the actual page to another file, add those menu navigation CSS:s to third one and so on and so forth. You can of course reuse individual CSS:s where they're relevant but <strong>DO NOT</strong> just cram everything into one big file!</p> http://stackoverflow.com/questions/1337041/regex-a-xml-string/1797115#1797115 0 Answer by Esko for Regex a xml string Esko 2009-11-25T14:05:16Z 2009-11-25T14:05:16Z <p><a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">See this answer for thorough explanation.</a></p> http://stackoverflow.com/questions/1796275/difference-between-java-collection-and-collections/1796340#1796340 3 Answer by Esko for Difference between Java Collection and Collections Esko 2009-11-25T11:27:17Z 2009-11-25T11:27:17Z <p><a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collection.html" rel="nofollow"><code>Collection</code></a>, as its javadoc says is "<em>The root interface in the collection hierarchy.</em>" This means that every single class implementing <code>Collection</code> in any form is part of the <a href="http://java.sun.com/javase/6/docs/technotes/guides/collections/index.html" rel="nofollow">Java Collections Framework</a>.</p> <p>The Collections Framework is Java's native implementation of data structure classes (<em>with implementation specific properties</em>) which represent a group of objects which are somehow related to each other and thus can be called a collection.</p> <p><a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collections.html" rel="nofollow"><code>Collections</code></a> is merely an utility method class for doing certain operations, for example adding thread safety to your <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/ArrayList.html" rel="nofollow">ArrayList</a> instance by doing this:</p> <pre><code>List&lt;MyObj&gt; list = Collections.synchronizedList(new Arraylist&lt;MyObj&gt;()); </code></pre> <p>The main difference in my opinion is that <code>Collection</code> is base interface which you may use in your code as a type for object (<em>although I wouldn't directly recommend that</em>) while <code>Collections</code> just provides useful operations for handling the collections.</p> http://stackoverflow.com/questions/1791178/customising-serialisation-of-java-collections-using-xstream/1791230#1791230 0 Answer by Esko for customising serialisation of java collections using xstream Esko 2009-11-24T16:30:51Z 2009-11-24T16:30:51Z <p>Add alias for the <code>java.util.String</code> class. Okay, that may break something else elsewhere but in this exact case that should be enough.</p> <p>If you don't want to do the thing above, you can make your own converters (<a href="http://xstream.codehaus.org/converter-tutorial.html" rel="nofollow">see this handy tutorial</a>) which will help you achieve your goal. And don't be afraid of making your own converter either, they're really easy to implement.</p> http://stackoverflow.com/questions/416667/java-webpart-like-asp-net/1781630#1781630 0 Answer by Esko for java webpart like asp.net ? Esko 2009-11-23T07:37:53Z 2009-11-23T07:37:53Z <p>Haven't seen any frameworks which would directly support such functionality beyond the very basics, but there's a lot of frameworks which enable you to develop such a system if you want to. From other answers only the GWT and Portlet ones are actually valid so far. </p> <p>If you want to find something compatible, you should start searching for web frameworks which support either of the Portlet API specifications (<a href="http://www.jcp.org/en/jsr/detail?id=168" rel="nofollow">1.0 is JSR-168</a>, <a href="http://www.jcp.org/en/jsr/detail?id=286" rel="nofollow">2.0 is JSR-286</a>). Otherwise you just may as well roll out your own based on the web framework you find most comfortable to work with, whether that's <a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a>, <a href="http://sfwk.org/" rel="nofollow">Seam</a>, <a href="http://wicket.apache.org/" rel="nofollow">Wicket</a>, <a href="http://tapestry.apache.org/" rel="nofollow">Tapestry</a>, <a href="http://vaadin.com/home" rel="nofollow">Vaadin</a>...</p> http://stackoverflow.com/questions/1781537/rmock-class-which-has-inner-class/1781567#1781567 0 Answer by Esko for Rmock class which has inner class Esko 2009-11-23T07:21:03Z 2009-11-23T07:21:03Z <p>I'm not exactly familiar with RMock but it reminds me of Mockito. Anyway, if I understood everything correctly, there should be something in the test which tells to override the inner class of Database and then something to expect its instantiation and return a mock instead of actual new class.</p> <p>However I don't think you can actually do that test as you want to since having multiple inner classes within one main class and thus using a pass-through instance to initiate the action can be considered a code smell. You don't want to have anything <code>static</code> either, instantiating new objects in Java is possibly the cheapest thing you can do (two bytes worth of bytecode) anyway.</p> <p>To test the class without any actual structural changes I heavily doubt you can use any mocking library to do the task for you, it's very much possible you have to write an actual mock object yourself which extends your current <code>Database</code> class and overrides just about everything it does.</p> http://stackoverflow.com/questions/1768582/how-to-write-the-captcha/1768707#1768707 0 Answer by Esko for How to write the Captcha? Esko 2009-11-20T06:31:53Z 2009-11-20T06:31:53Z <p>While having a captcha may feel like a good feature, it really isn't: Nowadays there's huge swarms of labor houses in China and such where people are paid for successfully filling out captchas. Yes, that means there's thousands of people manually breaking the system all the time.</p> <p>If I were implementing my own registration protection/antispam system, I'd go with the more cultural one choice which is just a variation of magic words. What I mean that instead of showing barely readable garble, I'd add a small intellectual puzzle and a text field for it's answer, for example asking <em>how much is seven plus six minus one</em> is currently a lot better at detecting both bots and stupid users.</p> http://stackoverflow.com/questions/1765908/is-it-better-to-have-code-duplication-and-have-it-be-very-simple-readable-or-hav/1765957#1765957 0 Answer by Esko for Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? Esko 2009-11-19T19:34:36Z 2009-11-19T19:34:36Z <p>Before giving my answer I'd like to see some example code to see what the question really is.</p> <p>While waiting for that, I believe that if your code is built in the most sane OO principles (such as <em>each class does only one thing and one thing only</em>) there shouldn't be any code duplication around. It certainly is possible to go nuts with abstractions etc. which do end up creating a huge pile of useless classes but I don't think that's the issue here.</p> http://stackoverflow.com/questions/1754628/graph-database-in-java-other-than-neo4j/1754796#1754796 2 Answer by Esko for Graph Database in Java (other than Neo4J) Esko 2009-11-18T09:43:10Z 2009-11-18T09:43:10Z <p>As RobV said, if your graphs can be represented in just about any custom format such as <a href="http://www.w3.org/RDF/" rel="nofollow">RDF</a> or <a href="http://en.wikipedia.org/wiki/DOT%5Flanguage" rel="nofollow">DOT language</a>, you're in luck! Here's various options you have:</p> <ul> <li>RDF: <a href="http://jena.sourceforge.net/" rel="nofollow">Jena</a> - Considered to be the de facto implementation of RDF for Java, however it has it's oddities such as heavy usage of Iterators.</li> <li>RDF: <a href="http://protege.stanford.edu/" rel="nofollow">Protégé</a> - If you don't use Jena (and even if you would) but would like to use RDF, Protégé is the tool for you. It's basically a really well done ontology editor which makes handling the graph data a breeze. It also uses a plugin hierarchy similar to Eclipse and there's loads of plugins available so you can plugin stuff like <a href="http://www.w3.org/TR/owl-features/" rel="nofollow">OWL ontologies</a> easily.</li> <li>DOT: <a href="http://www.graphviz.org/" rel="nofollow">GraphViz</a> - Another very popular tool, GraphViz can generate graphs from DOT language. Very powerful, a bit tricky to learn but also potentially all you need.</li> </ul> <p>Of course if it fits your company's profile, you could develop your own and start selling it as a product.</p> http://stackoverflow.com/questions/1742871/how-to-get-good-perfomance-of-regex-in-java/1742995#1742995 1 Answer by Esko for How to get good perfomance of Regex in java Esko 2009-11-16T15:44:16Z 2009-11-16T15:55:48Z <p>Move <code>Pattern</code> instantiation to a final static field (<em>erm, constant</em>), in your current code you're recompiling essentially the same <code>Pattern</code> every single time (no, <code>Pattern</code> doesn't cache anything!). That should give you some noticeable performance boost right off the bat.</p> http://stackoverflow.com/questions/1741545/java-calculate-sha-256-hash-of-large-file-efficiently/1741664#1741664 1 Answer by Esko for Java: Calculate SHA-256 hash of large file efficiently Esko 2009-11-16T11:41:53Z 2009-11-16T11:41:53Z <p>Since you apparently have a working C++ implementation which is fast, you could build a <a href="http://en.wikipedia.org/wiki/Java%5FNative%5FInterface" rel="nofollow">JNI</a> bridge and use the actual C++ implementation or maybe you could try not reinventing the wheel, especially since it's a big one and use a premade library such as <a href="http://www.bouncycastle.org/java.html" rel="nofollow">BouncyCastle</a> which has been made to solve all cryptographic needs of your program.</p> http://stackoverflow.com/questions/1727603/places-where-java-beans-used/1727650#1727650 5 Answer by Esko for places where Java Beans used? Esko 2009-11-13T07:14:37Z 2009-11-13T07:14:37Z <h2>Beans themselves</h2> <p><a href="http://en.wikipedia.org/wiki/JavaBean" rel="nofollow">JavaBeans</a> are everywhere, they're a convention and just about every single slightly larger library out there uses those conventions to automate things. Just a few reasons why JavaBeans should be used:</p> <ul> <li>They serialize nicely.</li> <li>Can be instantiated using reflection.</li> <li>Can otherwise be controlled using reflection very easily.</li> <li>Good for encapsulating actual data from business code.</li> <li>Common conventions mean anyone can use your beans AND YOU CAN USE EVERYONE ELSE'S BEANS without any kind of documentation/manual easily and in consistent manner.</li> <li>Very close to <a href="http://en.wikipedia.org/wiki/Plain%5FOld%5FJava%5FObject" rel="nofollow">POJO</a>s which actually means even more interoperability between distinct parts of the system.</li> </ul> <p>Also there's of course <a href="http://en.wikipedia.org/wiki/Enterprise%5FJavaBean" rel="nofollow">Enterprise JavaBeans</a> which are a whole another matter and shouldn't be mixed with plain JavaBeans. I just wanted to mention EJB:s because the names are similar and it's easy to get those two confused.</p> <h2>Beans in web applications</h2> <p>If you consider "normal" JavaBeans in web app context, they make more sense than wearing shoes in your legs. Since the Servlet specification requires for sessions to be serializable, it means you should store your data in session as something that's serializable - why not make it a bean then! Just throw your SomeBusinessDataBean into the session and you're good to go, laughably easy, specification-compliant and convenient.</p> <p>Also transferring that data around the application is easy too since JavaBeans help you to decouple parts of your application completely. Think JavaBeans as a letter and various subsystems of the application as departments within a very large corporation: Dept.A mails a bunch of data to Dept.B, Dept.B doesn't know -<em>or even care</em>- where the data came from just as it should be and can just open the letter, read stuff from it and do its thing based on that data.</p> <h2>Beans in standalone applications</h2> <p>Actually what's above applies to standalone apps too, the only difference is that you can mess up with the UI a bit more since standalone applications have stateful UI:s while web applications have statelss UI:s which in some cases only simulate stateful UI:s. Because of this different it's easier to make a mess with standalone application but that's worth a whole another topic and isn't directly related to JavaBeans at all.</p> http://stackoverflow.com/questions/1727577/extending-functionality-of-all-implementations-of-an-interface/1727610#1727610 1 Answer by Esko for Extending functionality of all implementations of an Interface? Esko 2009-11-13T07:01:38Z 2009-11-13T07:01:38Z <p>What prevents you from just adding new methods to the interface?</p> <p>If you can't just add the new functionality to old interface, you could consider making another interface and then an implementation which merely implements those two. Just to be clear, in code this is what I mean:</p> <pre><code>// Old functionality: public interface Traveling { void walk(); } // Old implementation: public class Person implements Traveling { void walk() { System.out.println("I'm walking!"); } } // New functionality: public interface FastTraveling { void run(); void fly(); } // New implementation, option #1: public class SuperHero extends Person implements FastTraveling { void run() { System.out.println("Zoooom!"); } void fly() { System.out.println("To the skies!"); } } // New implementation, option #2: public class SuperHero implements Traveling, FastTraveling { void walk() { System.out.println("I'm walking!"); } void run() { System.out.println("Zoooom!"); } void fly() { System.out.println("To the skies!"); } } </code></pre> http://stackoverflow.com/questions/1702739/site-slows-for-individual-users-but-they-can-switch-browsers/1713565#1713565 0 Answer by Esko for Site slows for individual users, but they can switch browsers? Esko 2009-11-11T07:14:31Z 2009-11-11T07:14:31Z <p>Interestingly no one has suggested advertisements as the cause (<em>Nazariy's answer could be adopted to those though</em>).</p> <p>Basically check the advertisements shown on your site, there's a ton of crap in those things and they're always based on user recognition which would explain why restarting the browser doesn't help.</p> http://stackoverflow.com/questions/1713481/groovy-string-to-int/1713550#1713550 2 Answer by Esko for Groovy String to int Esko 2009-11-11T07:08:19Z 2009-11-11T07:08:19Z <p>Several ways to do it, this one's my favorite:</p> <pre><code>def number = '123' as int </code></pre> http://stackoverflow.com/questions/1710374/database-not-dropped-in-between-unit-test/1710672#1710672 0 Answer by Esko for Database not dropped in between unit test Esko 2009-11-10T19:46:59Z 2009-11-10T19:46:59Z <p>You're missing <a href="http://junit.sourceforge.net/javadoc/org/junit/After.html" rel="nofollow">@After method</a> which is why you're seeing this behaviour. When running jUnit 4.x tests, the whole suite is run in a single thread one after another which means that you have to clear the state yourself or unspecified behaviour occurs, usually resources keep hanging and cause side effects to other unit tests.</p> http://stackoverflow.com/questions/1707700/windows-dialogs-when-to-use-ok-cancel-and-when-to-use-savecancel-is-a-wi/1707730#1707730 5 Answer by Esko for Windows Dialogs: when to use "OK + Cancel" and when to use "Save+Cancel". Is a Windows standard? Esko 2009-11-10T12:50:54Z 2009-11-10T12:50:54Z <p>I don't think I've ever seen <code>Save + Cancel</code> outside the Save As... dialogs provided by Windows itself (<em>if you're not using it but instead you have rolled your own, you're a bad, BAD person!</em>), however OK should be considered a confirmation for an action or its description on screen while Save clearly points that you are about to save something.</p> <p>For further reading, check these two links:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/aa152962.aspx" rel="nofollow">User Interface Design and Usability</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/aa511258.aspx" rel="nofollow">Windows User Experience Interaction Guidelines</a></li> </ul> http://stackoverflow.com/questions/1701952/ivy-ant-and-start-scripts/1701997#1701997 0 Answer by Esko for Ivy, ant and start scripts Esko 2009-11-09T16:07:19Z 2009-11-09T16:07:19Z <p>Since Ivy evicts overlapping dependencies and tries to find the best common dependency for all the projects I don't really understand how the order of dependencies would matter at all.</p> <p>However you should make a standard JAR/WAR/other with Ant for your project and include Ivy dependencies inside that JAR. Basically all you should need to do is to make Ivy's Ant task to resolve the dependencies to a folder, then build tha classes using those dependencies and then consruct the JAR so that you include the library JAR:s to newly created JAR's /lib/ folder.</p> http://stackoverflow.com/questions/1088558/lucene-wildcards-in-phrases/1699714#1699714 0 Answer by Esko for Lucene - Wildcards in phrases Esko 2009-11-09T08:23:01Z 2009-11-09T08:23:01Z <p>What you're looking for is <a href="http://lucene.apache.org/java/2%5F9%5F1/api/all/org/apache/lucene/search/FuzzyQuery.html" rel="nofollow">FuzzyQuery</a> which allows one to search for results with similar words based on <a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">Levenshtein distance</a>. Alternatively you may also want to consider using <a href="http://lucene.apache.org/java/2%5F9%5F1/api/all/org/apache/lucene/search/PhraseQuery.html#setSlop%28int%29" rel="nofollow">slop of PhraseQuery</a> (<em>also available in <a href="http://lucene.apache.org/java/2%5F9%5F1/api/all/org/apache/lucene/search/MultiPhraseQuery.html#setSlop%28int%29" rel="nofollow">MultiPhraseQuery</a></em>) if the order of words isn't significant.</p> http://stackoverflow.com/questions/1699593/java-int-comparation/1699623#1699623 2 Answer by Esko for java int comparation Esko 2009-11-09T07:51:58Z 2009-11-09T07:51:58Z <p>If you're looking for how to compare values in code, Stephen C's answer shows how to do just that.</p> <p>If you're interested of how the actual machine does the comparison, there's certainly a lot of variety just like djna suggests.</p> <p>Here's one way the computer <em>may</em> do the comparison when the Java's correct bytecode as described by Tim is invoked:</p> <p>Lets think in binary;</p> <pre><code> 5 = 0000 0101 10 = 0000 1010 </code></pre> <p>(<em>Note: I left out some zeros just to keep this simple</em>)</p> <p>Since in binary the values are multiples of 2 combined starting from right, it's easy to do a bit comparison;</p> <ul> <li>the number which has the highest one bit is larger than other</li> <li>...if the highest one bit is the same for both, check the one before the highest and keep doing that until either one has zero instead of one OR you run out of bits to check</li> </ul> <p>Certainly this checking can be done in a bit more fuzzy and definately more complex but better performing way but that's the way it works on the basic machine level.</p> http://stackoverflow.com/questions/1690401/need-suggestions-on-getting-started-with-junit/1690495#1690495 3 Answer by Esko for need suggestions on getting started with Junit Esko 2009-11-06T21:13:44Z 2009-11-06T21:13:44Z <p>Okay, lets see what can be done...</p> <blockquote> <p>Is this a good approach?</p> </blockquote> <p>Not really. Since instead of having one obsolete code path with somewhat known functionality, you now have two code paths with unequal and unpredictable functionality. Usually one would go with creating thorough unit tests for legacy code first and then refactor the original method to avoid incredibly large amounts of refactoring - what if some part of your jungle of codes forming the huge application keeps calling the other method while other parts call the new one?</p> <p>However working with legacy code is never optimal so what you're thinking may be the best solution.</p> <blockquote> <p>I will have multiple DAO's. Do I write the test methods inside the DAO itself or for each DAO I should have a seperate JUnit Test Class?</p> </blockquote> <p>Assuming you've gone properly OO with your program structure where each class does one thing and one thing only, yes, you should make another class containing the test cases for that individual class. What you're looking for here is mock objects (search for it at SO and Google in general, lots of info available) which help you decouple your class under test from other classes. Interestingly high amount of mocks in unit tests usually mean that your class could use some heavy refactoring.</p> <blockquote> <p>(might be n00b question) will all the test cases be ran automatically? I do not want to go to the front end click bunch of stuff so that call to the DAO gets triggered.</p> </blockquote> <p>All IDE:s allow you to run all the JUnit test at the same time, for example in Eclipse just click the source folder/top package and choose Run -> Junit test. Also when running individual class, all the unit tests contained within are run in proper JUnit flow (<code>setup()</code> -> <code>testX()</code> -> <code>tearDown()</code>).</p> <blockquote> <p>when tests are ran will I find out which methods failed? and for the ones failed will it tell me the test method that failed?</p> </blockquote> <p>Yes, part of Test Driven Development is the mantra Red-Green-Refactor which refers to the colored bar shown by IDE:s for unit tests. Basically if any of the tests in test suite fails, the bar is red, if all pass, it's green. Additionally for JUnit there's also blue for individual tests to show assertion errors.</p> <blockquote> <p>lastly, any good starting points? any tutorials, articles that show working with Junit</p> </blockquote> <p>I'm quite sure there's going to be multiple of these in the answers soon, just hang on :)</p> http://stackoverflow.com/questions/1682784/how-can-i-improve-this-comparator/1683426#1683426 1 Answer by Esko for How can I improve this Comparator? Esko 2009-11-05T20:38:31Z 2009-11-06T06:08:26Z <p>Here's how I'd improve the comparator:</p> <p>First, exctract a method for converting the value. It's being repeated, multiple try...catches are always ugly -> better to have as few of them as possible.</p> <pre><code>private Double getDouble(String number) { try { return Double.parseDouble(number); } catch(NumberFormatException e) { return null; } } </code></pre> <p>Next, write down simple rules to show how you want the flow of the comparator to be.</p> <pre><code>if i1==null &amp;&amp; i2!=null return -1 if i1==null &amp;&amp; i2==null return 0 if i1!=null &amp;&amp; i2==null return 1 if i1!=null &amp;&amp; i2!=null return comparison </code></pre> <p>Finally do horrible obfuscation to the actual comparator to raise a few WTF:s in code review (<em>or like others like to say it, "Implement the Comparator"</em>):</p> <pre><code>class NumericComparator implements Comparator&lt;String&gt; { public int compare(String s1, String s2) { final Double i1 = getDouble(s1); final Double i2 = getDouble(s2); return (i1 == null) ? (i2 == null) ? 0 : -1 : (i2 == null) ? 1 : i1.compareTo(i2); } private Double getDouble(String number) { try { return Double.parseDouble(number); } catch(NumberFormatException e) { return null; } } } </code></pre> <p>...yes, that's a branching nested ternary. If anyone complains about it, say what others here have been saying: <strong>Handling nulls isn't Comparator's job.</strong></p> http://stackoverflow.com/questions/1680429/urlmapping-for-camel-case-with-more-than-one-meaningful-step 0 Urlmapping for camel case with more than one meaningful step Esko 2009-11-05T13:03:26Z 2009-11-05T13:07:00Z <p>As we know, grails automatically maps <code>MyController</code> to <code>[root]/my</code> as expected, but if I have <code>MyAnotherController</code> it gets mapped to <code>[root]/myAnother</code>. I would like to get it mapped automatically to <code>[root]/my/another</code>.</p> <p>Is there a way to do this without putting additional URL mapping directives to <code>conf/UrlMappings.groovy</code>?</p> http://stackoverflow.com/questions/1671001/compare-date-objects-with-different-levels-of-precision/1671962#1671962 0 Answer by Esko for Compare Date objects with different levels of precision Esko 2009-11-04T06:13:54Z 2009-11-04T21:45:48Z <p>Yet another workaround, I'd do it like this:</p> <pre><code>assertTrue("Dates aren't close enough to each other!", (date2.getTime() - date1.getTime()) &lt; 1000); </code></pre> http://stackoverflow.com/questions/1667677/jquery-flot-working-in-ie6-but-not-ie8/1674705#1674705 1 Answer by Esko for JQuery Flot working in IE6 but not IE8 Esko 2009-11-04T15:52:27Z 2009-11-04T15:52:27Z <p>You're using flot 0.4 (from the year 2007, time before IE8!), latest version of flot is 0.6. Since you're using packed version of excanvas I can't verify its version but it may be worth it to try to update that one too.</p> http://stackoverflow.com/questions/1673841/design-patterns-in-java-api/1673950#1673950 0 Answer by Esko for Design Patterns in Java API Esko 2009-11-04T14:07:13Z 2009-11-04T14:07:13Z <p>Even though I'm sort of a broken clock with this one, Java XML API uses Factory a lot. I mean just look at this:</p> <pre><code>Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(source); String title = XPathFactory.newInstance().newXPath().evaluate("//title", doc); </code></pre> <p>...and so on and so forth.</p> <p>Additionally various Buffers (StringBuffer, ByteBuffer, StringBuilder) use Builder.</p> http://stackoverflow.com/questions/1662686/images-will-not-work-in-a-jar-file/1662702#1662702 1 Answer by Esko for Images will not work in a .jar file Esko 2009-11-02T17:52:17Z 2009-11-02T17:52:17Z <p><strong>Question</strong>: Does the folder <code>src</code> exist in the jar?</p> <p><strong>Tip</strong>: You can open .jar with any unpacking program which supports ZIP to see its contents.</p> <p><strong>Answer</strong>: The way you reference the resource is incorrect, you should do something like <code>getClass().getClassLoader().getResource("Cards/hidden.png")</code> instead.</p> http://stackoverflow.com/questions/1662375/xml-etree-elementtree-equivalent-in-java/1662607#1662607 2 Answer by Esko for xml.etree.ElementTree equivalent in Java Esko 2009-11-02T17:32:35Z 2009-11-02T17:32:35Z <p>To be honest, all XML APIs in Java suck, you just can vary the level of suckage you push yourself into which may turn horrible/slow to manageable/decent to even suprisingly OK at times.</p> <p>This all mostly stems from the fact that Java API:s try to be as <a href="http://www.w3.org/DOM/" rel="nofollow">W3C DOM</a> compliant as possible, in fact <a href="http://xerces.apache.org/xerces2-j/" rel="nofollow">Xerces</a> (<em>Java's current native XML solution</em>) prides itself on being compliant to a whole bunch of XML related W3C specifications as you can see from their front page.</p> <p>The actual Xerces API is very unpleasant to work with though and because of that multiple other Java XML libraries have popped out over the years. Currently most popular ones are</p> <ul> <li><a href="http://www.jdom.org/" rel="nofollow">JDOM</a>, simplifies DOM operations a lot and do I dare to say even pleasant at times, works like a charm when mixed with <a href="http://jaxen.codehaus.org/" rel="nofollow">Jaxen</a> - well, unless you hit <a href="http://stackoverflow.com/questions/649723/problem-referencing-nodes-directly-when-using-xpath-in-java">this problem with namespaces</a>.</li> <li><a href="http://xom.nu/" rel="nofollow">XOM</a> which has a wonderful presentation about what's wrong with Java's XML right now and how they propose their way of doing things as a solution. In part it is actually better than JDOM but it's not widespread enough yet so can't really say how it behaves in the real world out there. Definately worth a check though.</li> <li><a href="http://www.dom4j.org/" rel="nofollow">dom4j</a>, well-rounded library, supports all kinds of important features and plays out as a down-to-earth solution for XML. dom4j is basically the "old, proven and reliable" option of the popular ones.</li> </ul> <p>Last but definately not least I just have to mention <a href="https://sjsxp.dev.java.net/" rel="nofollow">StAX</a> just because it's different, it's actually event-driven streaming API for XML. Definately worth a look just out of curiosity.</p> <p>PS. I'm currently actually writing my own XML parser/navigator as an exercise but haven't decided on what kind of API it will have. I'm really aiming for ease of use which seems to be quite rare in Java XML API:s so far but I'm not entirely sure what kind of API I am going to provide. Python's ElementTree seems interesting but since I'm not entirely familiar with it, would you like to maybe give a short summary on what exactly in it you find enjoyable?</p> http://stackoverflow.com/questions/1807390/grails-security/1816026#1816026 Comment by Esko on Grails security Esko 2009-11-30T07:26:04Z 2009-11-30T07:26:04Z Psst, SO etiquette is that you select one of the answers as &quot;correct&quot; one (<i>green checkmark under the up/downvote counter</i>) after you feel like you've given one. I know, sometimes it's hard because there's so many good answers but it will help everyone in the future, especially those who don't have time to read every single word related to the question. http://stackoverflow.com/questions/1733799/generics-and-class-forname/1733827#1733827 Comment by Esko on Generics and Class.forName Esko 2009-11-29T17:01:10Z 2009-11-29T17:01:10Z Thorbj&#248;rn: Okay, took a bit longer than I expected but as promised, here's the utility I was talking about: <a href="http://code.google.com/p/bean-property-controller/" rel="nofollow">code.google.com/p/bean-property-controller/&hellip;</a> It doesn't have all the tricks for instantiating I know of, however it can instantiate a bit more exotic objects to some extent already. http://stackoverflow.com/questions/1812709/best-font-face-for-printed-report Comment by Esko on Best Font Face for Printed Report Esko 2009-11-28T15:26:53Z 2009-11-28T15:26:53Z Garamond, actually. It looks absolute crap on monitor but that's mostly because it's meant for printing. http://stackoverflow.com/questions/1802975/unit-testing-modalwindows-content-refresh-fails-while-the-actual-functionality-w/1811015#1811015 Comment by Esko on Unit testing ModalWindow's content refresh fails while the actual functionality works as expected - what am I doing wrong? Esko 2009-11-28T09:15:22Z 2009-11-28T09:15:22Z <code>WicketTester#startPanel()</code> actually adds the given panel to <code>DummyPanelPage</code> with the id <code>panel</code> to enable testing it as the single component on the page. I did however try using <code>Page</code> as <code>ModalWindow</code>'s content but that didn't work either. http://stackoverflow.com/questions/1797384/draw-dependency-graph-for-a-java-class/1807419#1807419 Comment by Esko on draw dependency graph for a java class Esko 2009-11-27T12:16:02Z 2009-11-27T12:16:02Z .dot format means DOT Language (<a href="http://en.wikipedia.org/wiki/DOT_language" rel="nofollow">en.wikipedia.org/wiki/DOT_language</a>) notation in text file which can be used with eg. GraphViz to generate all kinds of graphs. http://stackoverflow.com/questions/1802975/unit-testing-modalwindows-content-refresh-fails-while-the-actual-functionality-w Comment by Esko on Unit testing ModalWindow's content refresh fails while the actual functionality works as expected - what am I doing wrong? Esko 2009-11-26T10:49:04Z 2009-11-26T10:49:04Z Sorry in advance for the long title (<i>unless someone condenses it to a better and shorter one</i>) and long code samples. http://stackoverflow.com/questions/1796275/difference-between-java-collection-and-collections/1796340#1796340 Comment by Esko on Difference between Java Collection and Collections Esko 2009-11-26T08:35:49Z 2009-11-26T08:35:49Z Iterator is a generalized view to a collection, how'd that sound? :) http://stackoverflow.com/questions/1337041/regex-a-xml-string/1337282#1337282 Comment by Esko on Regex a xml string Esko 2009-11-25T14:05:41Z 2009-11-25T14:05:41Z Stop upvoting this, you all know this is the wrong way to approach the problem :( http://stackoverflow.com/questions/1781537/rmock-class-which-has-inner-class/1781567#1781567 Comment by Esko on Rmock class which has inner class Esko 2009-11-23T13:49:13Z 2009-11-23T13:49:13Z Ah my bad, thought somehow it was just a field instead of a class declaration. The statement stands for fields :) http://stackoverflow.com/questions/110641/how-do-you-code-the-hello-world-program-in-your-favourite-language/110746#110746 Comment by Esko on How do you code the "Hello World!" program in your favourite language? Esko 2009-11-23T07:44:06Z 2009-11-23T07:44:06Z I think your XML definition is lacking, you should have separate <code>&lt;word genus=&quot;something&quot;&gt;</code>, <code>&lt;whitespace&gt;</code> and <code>&lt;sentence&gt;</code> wrappers at least to allow for easy XPath selection. http://stackoverflow.com/questions/1781570/is-delphi-dead/1781594#1781594 Comment by Esko on Is Delphi dead? Esko 2009-11-23T07:38:52Z 2009-11-23T07:38:52Z Note the extensive API support they have. http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17571#17571 Comment by Esko on Computer Language puns and jokes Esko 2009-11-22T17:46:32Z 2009-11-22T17:46:32Z As said, it can't be translated, especially with some automated translator. http://stackoverflow.com/questions/1775710/starting-a-new-maven-project-what-landmines-to-avoid Comment by Esko on Starting a new Maven project, what landmines to avoid? Esko 2009-11-21T20:37:20Z 2009-11-21T20:37:20Z I feel horrible for this but I'd so much really would like to post a single word answer to this, &quot;Maven&quot;. http://stackoverflow.com/questions/1771983/in-agile-scrum-user-stories-how-much-detail-is-enough/1772067#1772067 Comment by Esko on In agile/scrum user stories, how much detail is enough? Esko 2009-11-20T20:37:05Z 2009-11-20T20:37:05Z This is a good answer. &quot;Correctly&quot; may in some cases mean just something as broad as &quot;Page loads completely&quot; but that doesn't mean it shouldn't be specified - just don't go into atomic details, it's important to identify only the relevant parts for each story. http://stackoverflow.com/questions/1756224/really-quick-and-dirty-solution-for-embedding-webkit-in-a-swing-ui Comment by Esko on Really quick and dirty solution for embedding webkit in a Swing UI? Esko 2009-11-18T14:21:46Z 2009-11-18T14:21:46Z Does &quot;Get JDK7 from near future&quot; count as quick'n'dirty? :)