User Johan Pelgrim - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T00:23:31Zhttp://stackoverflow.com/feeds/user/9707http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another40Did you ever switch from one programming language to another?Johan Pelgrim2008-09-21T19:41:40Z2009-11-19T14:56:25Z
<p>The stereotypical programmer is very keen on writing software in one particular programming language and is very fanatic about defending their programming language in any way they can, without being realistic about whether their programming language is the best tool for the job.</p>
<p>The other kind of programmer can take a step back and switch between languages (or is not very concerned about doing everything in just one language), is a "jack-of-all-trades", and doesn't mind learning a new language as long as it solves their problem in a good fashion.</p>
<p>Did you ever switch from one programming language to another? If yes, why?</p>
<p><em>[P.S. Please don't just answer with "I switched from language A to B because company X sucks! I think it will be very useful to understand why people switch between languages, or what's the best tool for a particular kind of job]</em></p>
http://stackoverflow.com/questions/833612/how-to-rename-an-existing-grails-application3How to rename an existing Grails applicationJohan Pelgrim2009-05-07T09:08:13Z2009-11-12T11:17:09Z
<p>Hi there,</p>
<p>Does anybody know how to (easily) "rename" an existing grails application? I'm running into this because my PaaS provider does not allow me to delete a subscription... So I want to deploy my application under a different name.</p>
<p>Of course, I can do this manually, but I think it might be a useful 'top-level' script (i.e. "grails rename-app newappname")</p>
<p>Manual hints:</p>
<p>When I do a "grails create-app myappname" I can see the myappname exists in the following files (and filenames)... Of course this is done by the create-app script, which replaces @...@ tokens in the template. I guess once they are replaced, it's not trivial to do a rename.</p>
<pre><code>./.project: <name>myappname</name>
./application.properties:app.name=myappname
./build.xml:<project xmlns:ivy="antlib:org.apache.ivy.ant" name="myappname" default="test">
./ivy.xml: <info organisation="org.example" module="myappname"/>
./myappname-test.launch:<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="myappname"/>
./myappname.launch:<listEntry value="/myappname"/>
./myappname.launch:<listEntry value="<?xml version="1.0" encoding="UTF-8"?> <runtimeClasspathEntry containerPath="org.eclipse.jdt.launching.JRE_CONTAINER" javaProject="myappname" path="1" type="4"/> "/>
./myappname.launch:<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="myappname"/>
./myappname.launch:<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Dbase.dir="${project_loc:myappname}" -Dserver.port=8080 -Dgrails.env=development"/>
./myappname.tmproj: <string>myappname.launch</string>
</code></pre>
<p>And of course... the top-level directory name is "myappname"</p>
<p>Any hints, or information about ongoing initiatives in this area are welcome</p>
<p>Greetz,</p>
<p>Johan </p>
http://stackoverflow.com/questions/301994/what-is-the-best-eclipse-gwt-plugin4What is the best Eclipse GWT plugin?Johan Pelgrim2008-11-19T14:18:22Z2009-09-10T04:11:43Z
<p>We're going to investigate GWT for our project. When searching for an Eclipse GWT plugin I got many. </p>
<ol>
<li><a href="http://www.instantiations.com/windowbuilder/gwtdesigner/index.html" rel="nofollow">GWT Designer</a></li>
<li><a href="http://code.google.com/p/cypal-studio/" rel="nofollow">Cypal studio</a></li>
<li>None, run GWT in hosted mode</li>
<li><a href="http://code.google.com/p/gwt-tooling/" rel="nofollow">GWT-Tooling</a></li>
<li>Other?</li>
</ol>
<p>In your view, what is the best GWT plugin for Eclipse and why?</p>
<p>[<em>27 Nov: Editied to reflect the answers below...</em>]</p>
http://stackoverflow.com/questions/218067/jaxb-xjc-influencing-generated-typesafe-enum-class-and-members0JAXB - XJC - influencing generated typesafe enum class and membersJohan Pelgrim2008-10-20T11:10:12Z2009-08-25T15:37:09Z
<p>Hi there,</p>
<p>When compiling the following simpleType with the XJC compile (from the JAXB package)...</p>
<pre><code><xs:simpleType name="test">
<xs:annotation>
<xs:appinfo>
<jaxb:typesafeEnumClass/>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>
<jaxb:typesafeEnumMember name="FOUR"/>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>
<jaxb:typesafeEnumMember name="SIX"/>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</code></pre>
<p>I end up with the following enum in Java (import statements and comments removed)</p>
<pre><code>@XmlEnum
public enum Test {
@XmlEnumValue("4")
FOUR("4"),
@XmlEnumValue("6")
SIX("6");
private final String value;
Test(String v) {
value = v;
}
public String value() {
return value;
}
public static Test fromValue(String v) {
for (Test c: Test.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v.toString());
}
}
</code></pre>
<p>This is exactly what I want... except for the <code>public String value()</code> method. I would expect the method to be called <code>public String getValue()</code> according to Sun's naming conventions. That way I can easily use it in a JSP-page using EL. Now I have to work my way around it. </p>
<p>Does anybody have any experience in further tweaking the XJC compilation to a more useful enumeration with a <code>getValue()</code> method, instead of a <code>value()</code> method? Or can I add a method or something?</p>
<p>P.S. This occurred in v2.0.3 of JAXB. I downloaded the latest version v2.1.8 and it's the same there...</p>
http://stackoverflow.com/questions/95836/what-was-the-most-refreshing-idea-which-benefitted-you-in-your-programming-career4What was the most refreshing idea which benefitted you in your programming career?Johan Pelgrim2008-09-18T19:09:45Z2009-07-14T07:18:43Z
<p>I think mine would be the <a href="http://gettingreal.37signals.com/" rel="nofollow">"Getting Real"</a> concept by <a href="http://37signals.com" rel="nofollow">37Signals.com</a></p>
<p>Basically this is based largely on the same-old-same-old <a href="http://en.wikipedia.org/wiki/KISS_principle" rel="nofollow">KISS</a> principle, but that simply proves how valid this principle is in many working environments and certainly in IT. I still benefit from this basic principle in my day-to-day programming.</p>
<p>What was your "eye opener" at the time?</p>
http://stackoverflow.com/questions/188991/which-programming-blog-entry-opened-your-eyes-and-made-you-do-something-different18Which programming blog entry opened your eyes and made you do something different as a developer from that moment on?Johan Pelgrim2008-10-09T20:08:04Z2009-05-11T15:37:23Z
<p>We all have had the experience... Somebody opened our eyes at some point with a very good blog post about our work as developers. And from that day with strive to do a better job.</p>
<p>What was the most influential development blog post for you? And how did it effect you in realizing or doing something different from that moment on?</p>
http://stackoverflow.com/questions/188991/which-programming-blog-entry-opened-your-eyes-and-made-you-do-something-different/189006#18900610Answer by Johan Pelgrim for Which programming blog entry opened your eyes and made you do something different as a developer from that moment on?Johan Pelgrim2008-10-09T20:11:11Z2009-03-24T21:26:15Z<p>Another one would be Joel Spolkey's post on "<a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">12 Steps to better code</a>". Including the notorious Joel test, which can help you indicate if you're doing the right things in your project (and if not, you can fight or flight ;-)</p>
<p>This one helped me in realising that our company was beyond help. I helped implementing a few of the items in the Joel test, but at some point it's a lonely battle and I decided to quit my job.</p>
<p><a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">http://www.joelonsoftware.com/articles/fog0000000043.html</a></p>
<p>Another related post (in my view) is the one titled "<a href="http://www.joelonsoftware.com/articles/FieldGuidetoDevelopers.html" rel="nofollow">A Field Guide to Developers</a>" which also helped me realize we weren't being taken serious by our management since a lot of trivial things (being able to order books, go on courses, get good hardware, etc.) were not trivial for us.</p>
<p><a href="http://www.joelonsoftware.com/articles/FieldGuidetoDevelopers.html" rel="nofollow">http://www.joelonsoftware.com/articles/FieldGuidetoDevelopers.html</a></p>
http://stackoverflow.com/questions/639764/legacy-mapping-in-grails-gorm-one-domain-class-and-two-tables-in-a-1n-relations/639981#6399810Answer by Johan Pelgrim for Legacy mapping in Grails/GORM: One domain class and two tables in a 1:N-relationshipJohan Pelgrim2009-03-12T18:51:37Z2009-03-12T18:51:37Z<p>Your SQL example indicates there are two tables, Employee and Salary. This should also be reflected in your classes. So instead of one, you need two classes. The GORM mapping would then look like this.</p>
<pre><code>class Employee {
String name
Salary salary
}
class Salary {
static hasMany = [ employees : Employee ]
int salary
}
</code></pre>
<p>See <a href="http://www.grails.org/GORM%2B-%2BDefining%2Brelationships" rel="nofollow">http://www.grails.org/GORM+-+Defining+relationships</a></p>
http://stackoverflow.com/questions/638326/best-way-to-use-an-inputstream-regarding-persistance-and-xml/638348#6383481Answer by Johan Pelgrim for Best way to use an InputStream regarding persistance and XMLJohan Pelgrim2009-03-12T12:11:29Z2009-03-12T12:11:29Z<p>I would advise to use the Apache <a href="http://commons.apache.org/io/" rel="nofollow">Commons IO</a> library. The <a href="http://commons.apache.org/io/apidocs/org/apache/commons/io/IOUtils.html" rel="nofollow">IOUtils</a> class contains many convenience methods to convert InputStreams to String and vice versa.</p>
http://stackoverflow.com/questions/133991/what-is-still-missing-in-our-programmer-toolbox15What is still missing in our programmer toolbox?Johan Pelgrim2008-09-25T15:27:44Z2008-12-27T18:09:15Z
<p>Currently we've got</p>
<ul>
<li>Good IDEs, with code completion, compilers, plug-ins, embedded servers... "The Works"</li>
<li>Good build tools</li>
<li>Nice unit testing frameworks</li>
<li>Pretty decent application servers</li>
<li>Lots of books about Design Patterns and XP (if only we had time to read them)</li>
<li>Fast CPUs and virtually unlimited storage (looking at YouTube ;-)</li>
<li>Decent network performance and coverage around the globe</li>
<li>Good version control systems</li>
<li>A great support network via <a href="http://stackoverflow.com" rel="nofollow">http://stackoverflow.com</a> (and I really mean this!)</li>
</ul>
<p>But what is still missing in our "programmer toolbox"?</p>
<p><em>[<strong>Note:</strong> The list above is not an exhaustive list... I'm not suggesting you should append this list so that we have described all the tools in our box nowadays, but what is simply missing currently and what would benefit you greatly in the future... if you could make a wish ;-)]</em></p>
http://stackoverflow.com/questions/277996/jaxb-remove-standaloneyes-from-generated-xml2JAXB - Remove 'standalone="yes"' from generated XMLJohan Pelgrim2008-11-10T14:32:59Z2008-12-24T10:51:09Z
<p>Hi people,</p>
<p>Do you know of a JAXB setting to prevent <strong>standalone="yes"</strong> from being generated in the resulting XML?</p>
<pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
</code></pre>
http://stackoverflow.com/questions/96496/good-times-what-was-your-most-fun-programming-gig-and-why6Good times: What was your most fun programming gig and why?Johan Pelgrim2008-09-18T20:23:56Z2008-12-01T17:17:02Z
<p>In the <em>umpteen</em> years I've been in IT I come to the conclusion that most of the time <em>management</em> did not add a lot of value to my job as a programmer. I even dare to say that most of them lacked vision, enthousiasm and a sense of direction. All but one.</p>
<p>One manager I worked for had a vision and knew how to motivate a team. We bypassed all protocol and secretly developed a system which he thought was lacking in our company. We took a chance (and we could have all lost our jobs) but in the end it worked out nicely for all of us. The tool we created (in a couple of months time) was well received and we got years of funding to improve the system. Nobody even mentioned the fact that we wasted a lot of company resources and took a big risk.</p>
<p>That would be the most exiting programming gig for me. What's yours?</p>
http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional31What was the biggest lesson you learned in your career as an IT professional?Johan Pelgrim2008-09-21T20:32:44Z2008-11-30T06:49:19Z
<p>Reminiscing on your career as an IT professional, what was the biggest lesson you learned? </p>
<p>[If you can accompany your answer with an story, anecdote, link to a website, article or book it would be great thing to inspire and teach the young IT professionals!] </p>
http://stackoverflow.com/questions/326579/how-to-best-prepare-for-technical-performance-review-what-to-include/326657#3266571Answer by Johan Pelgrim for How to best prepare for technical performance review? What to include?Johan Pelgrim2008-11-28T20:54:14Z2008-11-28T20:54:14Z<p>IMHO many performance review processes are flawed. Budget for pay raises is set, a team is only allowed to have a certain number of high-performers, reviews are very subjective or like you mentioned the company doesn't do their share of the work by predefining clear objectives, etc., etc. In short, they're often not very motivating.</p>
<p>I've learned that you simply need to create your own career plan and steps to achieve the career you aspire. If you can match that with the company or team objectives that's nice, but your career plan should not be directed by the company objectives. If you see yourself deviating from your career plan within your company you have to look elsewhere.</p>
<p>This allows you to decouple your career plan from the various (flawed) interpretations of what companies think is a good review process. If you do this well you might not always get a good review, but you will definately earn respect and you know that you are working on your career plan, not the company's.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/139534/classloader-issues-how-to-determine-which-library-versions-jar-files-are-load9Classloader issues - How to determine which library versions (jar-files) are loadedJohan Pelgrim2008-09-26T13:34:02Z2008-11-21T09:35:01Z
<p>Hi there,</p>
<p>I've just solved another <em>I-though-I-was-using-this-version-of-a-library-but-apparently-my-app-server-has-already-loaded-an-older-version-of-this-library-</em>issue (sigh).</p>
<p>Does anybody know a good way to verify (or monitor) whether your application has access to all the appropriate jar-files, or loaded class-versions?</p>
<p>Thanks in advance!</p>
<p>[P.S. A very good reason to start using the <a href="http://en.wikipedia.org/wiki/OSGi#Architecture" rel="nofollow">OSGi module architecture</a> in my view!]</p>
<p><strong>Update</strong>: <a href="http://www.jboss.org/community/docs/DOC-9697" rel="nofollow">This</a> article helped as well! It gave me insight which classes JBoss' classloader loaded by writing it to a log file.</p>
http://stackoverflow.com/questions/84799/what-is-the-single-best-free-eclipse-plugin-for-a-java-developer/302004#3020044Answer by Johan Pelgrim for What is the single best free Eclipse plugin for a Java developerJohan Pelgrim2008-11-19T14:21:47Z2008-11-19T14:21:47Z<p>If you need to get more insight in your code coverage <a href="http://www.eclemma.org" rel="nofollow">EclEmma</a> is pretty straightforward and useful</p>
<p><a href="http://www.eclemma.org" rel="nofollow">http://www.eclemma.org</a></p>
http://stackoverflow.com/questions/188991/which-programming-blog-entry-opened-your-eyes-and-made-you-do-something-different/188997#1889978Answer by Johan Pelgrim for Which programming blog entry opened your eyes and made you do something different as a developer from that moment on?Johan Pelgrim2008-10-09T20:09:28Z2008-10-09T20:26:52Z<p>One of my favorites would have to be <a href="http://www.scottberkun.com/blog/2007/asshole-driven-development" rel="nofollow"><strong>Scott Berkun's blog post on "ADD"</strong></a> - Also known as "Ass-hole Driven Development" (and the gazillion other funny acronyms for frequently seen, but not so frequently documented methodologies ;-) (No, this is not offensive... it's a real good eye-opener! Go read it now, you'll love it. I guarantee it)</p>
<p><a href="http://www.scottberkun.com/blog/2007/asshole-driven-development" rel="nofollow">http://www.scottberkun.com/blog/2007/asshole-driven-development</a></p>
http://stackoverflow.com/questions/91256/best-resources-to-prepare-for-the-spring-framework-certification3Best resources to prepare for the "Spring Framework Certification"Johan Pelgrim2008-09-18T09:42:53Z2008-09-29T21:13:31Z
<p>Hi there</p>
<p>I want to do the Spring Framework Certification (2.5), but there aren't many good resources to prepare for the exam. For the Sun certifications there are a lot of books and trainers (Enthuware / Whizlabs) but not for the Spring certification.</p>
<p>Has somebody done the 2.5 exam already? What was your first impression? How did you prepare? What resources did you have and which are sufficient.</p>
<p>Thanks in advance for your answers!</p>
http://stackoverflow.com/questions/91256/best-resources-to-prepare-for-the-spring-framework-certification/91268#912687Answer by Johan Pelgrim for Best resources to prepare for the "Spring Framework Certification"Johan Pelgrim2008-09-18T09:44:37Z2008-09-29T21:09:48Z<ol>
<li><p>It seems that the first thing you HAVE to do is take the Spring Core training (see <a href="http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=61&t=002330&p=1" rel="nofollow">this</a> discussion at <a href="http://www.javaranch.com/" rel="nofollow">Javaranch</a>)</p></li>
<li><p>Look at the list of suggested study topics for the Spring Framework Certification examination (<a href="http://www.springsource.com/files/u1/_for_the_Spring_Framework_Certification_Exam.pdf" rel="nofollow" title="List of suggested study topics for the Spring Framework Certification examination">PDF</a>)</p></li>
<li><p>Read the 2nd edition of the "Spring in Action" book -- <em>focus on the study topics</em> (<a href="http://rads.stackoverflow.com/amzn/click/1933988134" rel="nofollow">Amazon</a>) (covers Spring 2.0, but is a good resource for the generic concepts)</p></li>
<li><p>Read the Spring Framework Reference Manual -- <em>focus on the study topics</em> (<a href="http://static.springframework.org/spring/docs/2.5.x/reference/index.html" rel="nofollow">HTML</a>/<a href="http://static.springframework.org/spring/docs/2.5.x/spring-reference.pdf" rel="nofollow">PDF</a>)</p></li>
<li><p>Do all the labs from the Spring Core training (again!)</p></li>
<li><p>Doing the various Spring exams at <a href="http://javablackbelt.com" rel="nofollow">JavaBlackBelt</a></p></li>
<li><p>By know you should be well prepared to take the certification!</p></li>
</ol>
<p>[<em>I'm continuing to find resources, so I'm combining them here in a single answer here</em>]</p>
http://stackoverflow.com/questions/140959/if-your-software-development-team-is-not-following-any-design-methodology-what-i/142334#1423341Answer by Johan Pelgrim for If your software development team is not following any design methodology, what is that called?Johan Pelgrim2008-09-26T22:21:55Z2008-09-26T22:21:55Z<p><strong>ADD - Also known as "Ass-hole Driven Development"</strong></p>
<p>Read <a href="http://www.scottberkun.com/blog/2007/asshole-driven-development/" rel="nofollow">this</a> classic post from Scott Berkun (and the gazillion other funny acronyms for frequently seen, but not so frequently documented methodologies ;-)</p>
<p>No, this is not offensive... it's a real good eye-opener! Go read it now, you'll love it (I guarantee it)</p>
<p><a href="http://www.scottberkun.com/blog/2007/asshole-driven-development" rel="nofollow">http://www.scottberkun.com/blog/2007/asshole-driven-development</a></p>
http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137946#13794610Answer by Johan Pelgrim for Using "final" modifier whenever applicable in javaJohan Pelgrim2008-09-26T05:45:57Z2008-09-26T05:58:57Z<p>I think it all has to do with good coding style. Of course you can write good, robust programs without using a lot of <code>final</code> modifiers anywhere, but when you think about it... </p>
<p>Adding <code>final</code> to all things which <em>should not</em> change simply narrows down the possibilities that you (or the next programmer, working on your code) will misinterpret or misuse the thought process which resulted in your code. At least it should ring some bells when they now want to change your previously immutable thing.</p>
<p>At first, it kind of looks awkward to see a lot of <code>final</code> keywords in your code, but pretty soon you'll stop noticing the word itself and will simply think, <em>that-thing-will-never-change-from-this-point-on</em> (you can take it from me ;-)</p>
<p>I think it's good practice. I am not using it all the time, but when I can and it makes sense to label something <code>final</code> I'll do it.</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/134037#1340374Answer by Johan Pelgrim for What is the one programming skill you have always wanted to master but haven't had time?Johan Pelgrim2008-09-25T15:33:49Z2008-09-25T15:33:49Z<p><a href="http://www.erlang.org" rel="nofollow">Erlang</a></p>
http://stackoverflow.com/questions/123691/use-continue-or-checked-exceptions-when-checking-and-processing-objects3Use continue or Checked Exceptions when checking and processing objectsJohan Pelgrim2008-09-23T20:37:37Z2008-09-23T20:49:01Z
<p>I'm processing, let's say a list of "Document" objects. Before I record the processing of the document successful I first want to check a couple of things. Let's say, the file referring to the document should be present and something in the document should be present. Just two simple checks for the example but think about 8 more checks before I have successfully processed my document.</p>
<p>What would have your preference?</p>
<pre><code>for (Document document : List<Document> documents) {
if (!fileIsPresent(document)) {
doSomethingWithThisResult("File is not present");
continue;
}
if (!isSomethingInTheDocumentPresent(document)) {
doSomethingWithThisResult("Something is not in the document");
continue;
}
doSomethingWithTheSucces();
}
</code></pre>
<p>Or</p>
<pre><code>for (Document document : List<Document> documents) {
try {
fileIsPresent(document);
isSomethingInTheDocumentPresent(document);
doSomethingWithTheSucces();
} catch (ProcessingException e) {
doSomethingWithTheExceptionalCase(e.getMessage());
}
}
public boolean fileIsPresent(Document document) throws ProcessingException {
... throw new ProcessingException("File is not present");
}
public boolean isSomethingInTheDocumentPresent(Document document) throws ProcessingException {
... throw new ProcessingException("Something is not in the document");
}
</code></pre>
<p>What is more readable. What is best? Is there even a better approach of doing this (maybe using a design pattern of some sort)? </p>
<p>As far as readability goes my preference currently is the Exception variant... </p>
<p>What is yours?</p>
http://stackoverflow.com/questions/111045/supplementary-development-tools-for-java/111385#1113851Answer by Johan Pelgrim for Supplementary development tools for JavaJohan Pelgrim2008-09-21T16:44:26Z2008-09-21T16:44:26Z<ol>
<li><a href="http://maven.apache.org" rel="nofollow">Maven</a> for organizing and building your project</li>
<li><a href="https://hudson.dev.java.net" rel="nofollow">Hudson</a> to do this automatically ;-)</li>
<li><a href="http://emma.sourceforge.net" rel="nofollow">Emma</a> (and the <a href="http://www.eclemma.org" rel="nofollow">EclEmma</a> plugin for Eclipse) to get some insight in your code coverage</li>
</ol>
http://stackoverflow.com/questions/76764/where-can-i-find-a-good-introductory-tutorial-for-spring/93300#933000Answer by Johan Pelgrim for Where can I find a good introductory tutorial for Spring?Johan Pelgrim2008-09-18T14:55:17Z2008-09-18T14:55:17Z<p>The Spring refcard from DZone is also VERY handy for Spring newbies</p>
<p><a href="http://refcardz.dzone.com/refcardz/spring-configuration" rel="nofollow">http://refcardz.dzone.com/refcardz/spring-configuration</a></p>
http://stackoverflow.com/questions/301994/what-is-the-best-eclipse-gwt-pluginComment by Johan Pelgrim on What is the best Eclipse GWT plugin?Johan Pelgrim2008-11-30T20:12:35Z2008-11-30T20:12:35Z@Charade. I can research all the plugins I can find. This will probably take me a couple of days / weeks. Or, I can ask this question and get an almost immediate answer from somebody who has worked with a plugin and thought it was the best. Two people... three, counting a friend. That saves me days.http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-anotherComment by Johan Pelgrim on Did you ever switch from one programming language to another?Johan Pelgrim2008-11-28T06:57:54Z2008-11-28T06:57:54ZI didn't say "works" in one language, I said "is very keen on writing software in one particular programming language". I'm aiming at the Java vs. C#/.Net vs Ruby vs etc. battle you so often read about. If I'd ask you, write me a web service, what language would you choose? That's your fav language!http://stackoverflow.com/questions/301994/what-is-the-best-eclipse-gwt-plugin/319537#319537Comment by Johan Pelgrim on What is the best Eclipse GWT plugin?Johan Pelgrim2008-11-27T20:15:07Z2008-11-27T20:15:07ZThanks. I removed Googlipse, because that seems to be dead...http://stackoverflow.com/questions/218067/jaxb-xjc-influencing-generated-typesafe-enum-class-and-members/244003#244003Comment by Johan Pelgrim on JAXB - XJC - influencing generated typesafe enum class and membersJohan Pelgrim2008-11-08T10:02:16Z2008-11-08T10:02:16ZThanks for thinking along philvarner... Currently I've worked my way around this. I've also posted it on the JAXB forum (<a href="http://forums.java.net/jive/message.jspa?messageID=310818" rel="nofollow">forums.java.net/jive/message.jspa?messageID=310818/…</a>), but no answer there either... we'll see. IMHO it's flawed code generation. I'll let you know if the JAXB plugin worked.http://stackoverflow.com/questions/139055/subversive-connectors-not-working-with-newest-ganymede-update/143379#143379Comment by Johan Pelgrim on Subversive connectors not working with newest Ganymede updateJohan Pelgrim2008-09-30T13:35:12Z2008-09-30T13:35:12ZPawel, this was the answer for me (hint hint)
(If I could have given you 10 votes up I would ;-)http://stackoverflow.com/questions/139055/subversive-connectors-not-working-with-newest-ganymede-update/143379#143379Comment by Johan Pelgrim on Subversive connectors not working with newest Ganymede updateJohan Pelgrim2008-09-30T13:31:23Z2008-09-30T13:31:23ZGreat stuff rjray! This saved me some time!!!http://stackoverflow.com/questions/139534/classloader-issues-how-to-determine-which-library-versions-jar-files-are-load/141969#141969Comment by Johan Pelgrim on Classloader issues - How to determine which library versions (jar-files) are loadedJohan Pelgrim2008-09-29T20:49:50Z2008-09-29T20:49:50ZSounds like something I could use Tom! I'll dig into it tomorrow. Thanks in advance....
Johanhttp://stackoverflow.com/questions/133991/what-is-still-missing-in-our-programmer-toolbox/136599#136599Comment by Johan Pelgrim on What is still missing in our programmer toolbox?Johan Pelgrim2008-09-26T05:34:32Z2008-09-26T05:34:32ZNice one Tim... I like it! Let me know when it's there ;-)http://stackoverflow.com/questions/133991/what-is-still-missing-in-our-programmer-toolbox/134111#134111Comment by Johan Pelgrim on What is still missing in our programmer toolbox?Johan Pelgrim2008-09-25T21:29:48Z2008-09-25T21:29:48ZI agree Tim. I've added it to the list of things we already have... Thanks for pointing this outhttp://stackoverflow.com/questions/130095/most-useful-free-java-libraries/132261#132261Comment by Johan Pelgrim on Most useful free Java libraries?Johan Pelgrim2008-09-25T15:07:00Z2008-09-25T15:07:00ZIf you're using Java 1.5 or later you can simply use java.util.UUID.randomUUID()http://stackoverflow.com/questions/123691/use-continue-or-checked-exceptions-when-checking-and-processing-objects/123775#123775Comment by Johan Pelgrim on Use continue or Checked Exceptions when checking and processing objectsJohan Pelgrim2008-09-23T20:56:59Z2008-09-23T20:56:59ZOr maybe even if (document.isValid())... Nice! Thanks for the twist in thinking about this...http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111885#111885Comment by Johan Pelgrim on Did you ever switch from one programming language to another?Johan Pelgrim2008-09-21T19:51:06Z2008-09-21T19:51:06ZTrue true... But it's sometimes hard to find an opportunity in new / upcoming languagues like Groovy, Scala or Erlang so it's often easier to stick with what you know best (if there are still interesting projects to be found, of course)http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111874#111874Comment by Johan Pelgrim on Did you ever switch from one programming language to another?Johan Pelgrim2008-09-21T19:48:23Z2008-09-21T19:48:23ZYou've tried them all... ;-) If you had to choose, which language would be your preferred language?http://stackoverflow.com/questions/91256/best-resources-to-prepare-for-the-spring-framework-certification/106754#106754Comment by Johan Pelgrim on Best resources to prepare for the "Spring Framework Certification"Johan Pelgrim2008-09-21T10:03:49Z2008-09-21T10:03:49ZThanks toolkit. So, you have taken the exam? Did you pass (and with what percentage)? Was it easy / hard? Can you remember some (type of) questions?http://stackoverflow.com/questions/96496/good-times-what-was-your-most-fun-programming-gig-and-why/97953#97953Comment by Johan Pelgrim on Good times: What was your most fun programming gig and why?Johan Pelgrim2008-09-19T21:08:21Z2008-09-19T21:08:21ZIndeed, sounds like you're having a good time!