User Rolf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T22:36:20Zhttp://stackoverflow.com/feeds/user/21134http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/534199/how-to-collect-spring-properties-from-multiple-files-for-use-on-a-single-bean/1808708#18087080Answer by Rolf for How to collect spring properties from multiple files for use on a single beanRolf2009-11-27T13:13:52Z2009-11-27T13:13:52Z<p>The org.springframework.beans.factory.config.PropertyPlaceholderConfigurer can do this (as already answered. What you may want to do is make use of the name spacing so that you can refer to same-named properties from both files without ambiquity. For your example, you can do this:</p>
<pre><code><bean id="generalPropertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:/properties/general.properties"/>
</bean>
<bean id="db.PropertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:/properties/rdbm.properties" />
<property name="placeholderPrefix" value="$db{" />
<property name="placeholderSuffix" value="}" />
</bean>
</code></pre>
<p>In your context files, you can now refer to general properties with <strong>${someproperty}</strong>, and refer to rdbm properties with <strong>$db{someproperty}</strong>.</p>
<p>This will make your context files much cleaner and clearer to the developer.</p>
http://stackoverflow.com/questions/1613679/how-to-make-an-incremental-update-to-a-pdf/1808647#18086470Answer by Rolf for How to make an incremental update to a PDFRolf2009-11-27T13:00:45Z2009-11-27T13:00:45Z<p>Changing an already signed PDF would sound imply a security leak in the PDF signing functionality/spec. The purpose of signing a PDF is a guarantee to the reader that it has not been altered by anyone other than the original author.</p>
<p>I think your only option is to send extra pages in a seperate PDF, or change the original PDF and have it re-signed.</p>
http://stackoverflow.com/questions/1805923/incremental-deployment-of-java-web-applications/1805953#18059531Answer by Rolf for Incremental deployment of java web applicationsRolf2009-11-26T22:30:47Z2009-11-26T22:30:47Z<p>Hard to say. You can ofcourse replace single class files in an exploded webapp, but this is generally a bad idea and you don't see many people doing this.</p>
<p>The reason is that when you make small changes it becomes harder and harder to detect differences between production and development. The chances of you sending a wrong classfile and breaking the production server increases over time.</p>
<p>When you say text changes, isn't it an idea to keep the text resources seperate from the war file? That way, not only developers but maybe even the customer can easily add/change translations.</p>
<p>To the customer it's important, but technically it's silly to do a 80MB deploy over a slow line to fix a small typo.</p>
<p>You can also try to look at your build/delivery cycle and increase testing efforts to prevent these small changes.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1805819/cross-site-tomcat-form-post-not-working0Cross-site tomcat form post not workingRolf2009-11-26T21:46:47Z2009-11-26T22:22:17Z
<p>Hi,</p>
<p>For a customer, I need to write a Servlet which can print values in a form post. The form is hosted on another server and looks somewhat like this:</p>
<pre><code><form action="http://myserver/myServlet" method="POST">
<input type="text" id="someName" value="someInterestingValue"/>
<input type="submit" value="submit" />
</form>
</code></pre>
<p>I have a Tomcat 5.0.28 server available, running on a Java 1.4 jdk, so I made a simple servlet:</p>
<pre><code>public class ProxyServlet extends HttpServlet {
public void doPost(HttpServletRequest req,
HttpServletResponse res)
throws ServletException, IOException {
PrintWriter out = res.getWriter();
Enumeration a =req.getAttributeNames();
while (a.hasMoreElements()){
String attrname = (String) a.nextElement();
out.println(attrname+"="+req.getAttribute(attrname)+"<br/>");
}
out.close();
}
}
</code></pre>
<p>When I go to the servlet by URL everything looks as expected. When I send a GET request with some parameters, I can see those as attributes in the debugger in the doGet() method (method was left out for brevety).</p>
<p>However, in the doPost(), my form fields seem to be missing. I've looked into the Tomcat logfiles, and nothing special is logged. I tried to add a crossdomain.xml to some directories but did not find a way to change this behaviour. </p>
<p>So to be clear: The Form as listed above is on server A. My servlet runs on an existing legacy Tomcat/Java application hosted on server B. When the form is of type "POST" none of the fields arrive at the Servlet on server B. Apache is NOT "in front" of Tomcat.</p>
<p>Is there some configuration setting I am missing in Tomcat?
Any tips or suggestions where to look next?
Help is greatly appreciated.</p>
http://stackoverflow.com/questions/1805819/cross-site-tomcat-form-post-not-working/1805920#18059200Answer by Rolf for Cross-site tomcat form post not workingRolf2009-11-26T22:22:17Z2009-11-26T22:22:17Z<p>Found the problem. After a whole day of searching and coding, it all boils down to the fact that my code was working fine. The problem is in the form. the line:</p>
<pre><code><input type="text" id="someName" value="someInterestingValue"/>
</code></pre>
<p>Should read:</p>
<pre><code><input type="text" name="someName" value="someInterestingValue"/>
</code></pre>
<p>For people mentioning "getParameter" instead of "getAttribute" you are totally correct. In my test code I had both just to be sure (because I thought I lost it...) but both were not returning results, as the browser was simply not sending the name/value pairs.</p>
<p>I guess posting this on Stackoverflow did help, because I had to explain and re-read my problem I thought the "id=" looked funny. Coding is finding bugs in pieces of text you are overlooking...</p>
http://stackoverflow.com/questions/1791005/what-should-we-do-when-the-buildserver-is-treated-like-a-goldmine/1791078#17910781Answer by Rolf for What should we do when the buildserver is treated like a goldmine?Rolf2009-11-24T16:09:06Z2009-11-24T16:09:06Z<p>Our unittestserver does tests, and tags CVS. Then we go on a buildserver which has ea script to create a release which isready for customer installation. This release is then installed on a test server as if it was the customer's server, and then tested.</p>
<p>Judging your story, you are hoping to find some script or setting which will prevent the buildserver from getting used as "quick release" server. The only real way to do this is process.</p>
<p>Rules in our company:</p>
<ol>
<li>Developers check into CVS, they get mails from the unittest server if it fails, and have to fix that in code. No access to the build/test server for devs.</li>
<li>There is 1 specific developer who can create a release which he can send to the test department.</li>
<li>The test department installs the release on their test server and tests it.</li>
<li>The testers, and only the testers, can give a "Go" for release.</li>
<li>The release is done by a designated person who is also the customer contact.</li>
</ol>
<p>As you can see the developers are seperated from the testers and the customer (formally speaking). In practice it is not all that rigid ofcourse, but people need to understand that if this process is not in place, the customer will get inferior quality software.</p>
<p>The customer has to be educated that "fast" means "low quality". We can do it Fast, Good, or Cheap. Pick two.
<a href="http://www.sixside.com/fast%5Fgood%5Fcheap.asp" rel="nofollow">http://www.sixside.com/fast%5Fgood%5Fcheap.asp</a></p>
http://stackoverflow.com/questions/1330120/query-optimization-why-did-toad-do-this/1630056#16300562Answer by Rolf for Query Optimization. Why did TOAD do this? Rolf2009-10-27T10:57:36Z2009-10-28T06:53:41Z<p>Adding larger-than and smaller-than in a query is an old trick which sometimes nudges the query optimizer to use an index on that column. So this trick:</p>
<pre><code>AND RCI.fitemno >= RIN1.fcitemno
AND RCI.fitemno <= RIN1.fcitemno
</code></pre>
<p>forces the database to use indexes on RIN1 and RCI fitemno columns if present. I'm not sure if temporary indexes get created on the fly when you do this.</p>
<p>I used to do these tricks with a DB2 database, and they worked nicely.</p>
http://stackoverflow.com/questions/1193220/how-can-i-make-captcha-work-across-multiple-pages/1193271#11932710Answer by Rolf for How can I make CAPTCHA work across multiple pages?Rolf2009-07-28T10:37:38Z2009-07-28T10:37:38Z<p>This depends largely on what you are using for rendering the pages. Spring MVC? Struts? You can tie components to pages in most of these frameworks.</p>
<p>You can also maybe think of a workaround where each page registers his captcha in the session in a seperate key, and have the page check against it's own value.</p>
http://stackoverflow.com/questions/879965/how-to-detect-unused-properties-in-spring5How to detect unused properties in SpringRolf2009-05-18T21:36:35Z2009-05-19T09:57:02Z
<p>I'm working on a Spring 2.0 project, without annotations. We're using several PropertyPlaceholderConfigurer beans with different pre- and suffixes to load properties from different property files. This works beautifully.</p>
<p>Because of the large number of property files and properties, I wanted the application to list the properties which are <strong>not used</strong>. That means, properties which are configured in a property file, but never referenced in the Spring application context.</p>
<p>I wrote a bean which implements BeanFactoryPostProcessor, and did some trickery to find references in the application context to the different PropertyPlaceHolderConfigurers. This gives me a list of properties which are used.</p>
<p>However, I can not get to the properties which were loaded by the PlaceHolderConfigurers. Because of that, I can not show the properties which are NOT used.</p>
<p>Is there a (simple) way to get to the properties of a PropertyPlaceholderConfigurer? Any other suggestions on how to solve this problem?</p>
<p><strong>Edit</strong>: The solution was accessing the mergeProperties metod, like so:</p>
<pre><code>PropertyPlaceholderConfigurer ppc =
(PropertyPlaceholderConfigurer) applicationContext.getBean("yourBeanId");
Method m = PropertiesLoaderSupport.class.getDeclaredMethod("mergeProperties",
new Class[] {});
m.setAccessible(true);
Properties loadedProperties = (Properties) m.invoke(propertyPlaceHolder, null);
</code></pre>
<p>After getting the originally loaded properties, and fetching the beandefinitions during the BeanFactoryPostProcessing, the rest was simple. Subtract the two collections, and voila: We can now list the unused properties.</p>
http://stackoverflow.com/questions/662712/how-to-prevent-application-freeze-if-server-unavailable/662767#6627673Answer by Rolf for How to prevent application freeze if server unavailable?Rolf2009-03-19T15:52:32Z2009-03-19T15:52:32Z<p>I'm going to advise the obvious: Use a seperate thread to do this in. The thread can freeze without freezing the application.</p>
http://stackoverflow.com/questions/424341/are-there-any-java-vms-which-can-save-their-state-to-a-file-and-then-reload-that/626534#6265343Answer by Rolf for Are there any Java VMs which can save their state to a file and then reload that state?Rolf2009-03-09T14:50:22Z2009-03-09T14:50:22Z<p>I'm not aware of JVM's that can store state. Depending on your exact needs, you can maybe consider using Terracotta. Terracotta is essentially able to share heap state between JVM's, and store this state to disk.</p>
<p>This can be used to cluster applications, and/or make the heapstate persistent. In effect, you can use it to start the JVM up and pick up where you left off. For more information check out:
<a href="http://www.infoq.com/articles/open-terracotta-intro" rel="nofollow">http://www.infoq.com/articles/open-terracotta-intro</a></p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/400382/how-does-a-good-developer-keep-from-creating-code-with-a-high-bus-hit-factor/400806#4008061Answer by Rolf for How does a good developer keep from creating code with a high bus hit factor?Rolf2008-12-30T16:49:28Z2009-02-28T16:47:02Z<p>The project should be easy to check out and setup. In our company, all projects are CVS and Eclipse and Maven, so upon Checkout, you do "maven eclipse" and you're all set.</p>
<p>From there on, you need a good developers manual (not a 500 page document, just the essentials to get you going). The dev manual points to different documents, where developers can find info on the design and other stuff.</p>
<p>A bug tracking system is a must, and good descriptions in the bugs are a must.</p>
<p>Try to comment your code, and keep javadoc up to date.</p>
<p>Good unit tests also help. Try to keep unit tests a simple suite, where you can just run them all without having to configure all kinds of stuff.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/186615/how-to-set-up-eclipse-tptp6How to set up Eclipse TPTPRolf2008-10-09T10:05:34Z2009-02-27T06:33:14Z
<p>I need to profile a java application for a customer. It's an eclipse/maven project, so I decided on using eclipse TPTP ( <a href="http://www.eclipse.org/tptp" rel="nofollow">http://www.eclipse.org/tptp</a> ).</p>
<p>I tried to install eclipse TPTP through the update manager from a standard eclipse installation, but I gave up because of the unbelievable complex setup and downloading of dependencies with very cryptic names.</p>
<p>Then I downloaded the "all in one TPTP 4.5.1" package from <a href="http://www.eclipse.org/tptp/home/downloads/?ver=4.5.1" rel="nofollow">http://www.eclipse.org/tptp/home/downloads/?ver=4.5.1</a> but when I start it up, it pops up an error saying "The eclipse executable launcher was unable to locate it's companion shared library".</p>
<p>I'm running Windows XP, Sun Java 1.5, and clicked on "eclipse.exe" in the unpacked eclipse TPTP installation.</p>
<p>What do I need to do to get eclipse TPTP running?</p>
http://stackoverflow.com/questions/571960/disabling-log4j-output-in-java/572872#5728721Answer by Rolf for Disabling Log4J Output in JavaRolf2009-02-21T12:07:01Z2009-02-21T12:07:01Z<p>You can change the level to OFF which should get rid of all logging. According to the log4j website, valid levels in order of importance are TRACE, DEBUG, INFO, WARN, ERROR, FATAL. There is <a href="http://supportweb.cs.bham.ac.uk/documentation/tutorials/docsystem/build/tutorials/log4j/log4j.html#LOG4J-Basics-Logger" rel="nofollow">one undocumented level</a> called OFF which is a higher level than FATAL, and turns off all logging.</p>
<p>You can also create an extra root logger to log nothing (level OFF), so that you can switch root loggers easily. <a href="http://www.velocityreviews.com/forums/t130166-log4j-disable-output-for-console-rootlogger.html" rel="nofollow">Here's a post</a> to get you started on that.</p>
<p>You might also want to read the <a href="http://logging.apache.org/log4j/1.2/faq.html#2.3" rel="nofollow">Log4J FAQ,</a> because I think turning off all logging may not help. It will certainly not speed up your app that much, because logging code is executed anyway, up to the point where log4j decides that it doesn't need to log this entry.</p>
http://stackoverflow.com/questions/565252/how-to-set-a-strings-colour-before-printing-it-to-screen/565399#5653992Answer by Rolf for How to set a string's colour before printing it to screen.Rolf2009-02-19T13:52:50Z2009-02-19T13:52:50Z<p>Google aparently has a library for this sort of thing:
<a href="http://code.google.com/p/jlibs/wiki/AnsiColoring" rel="nofollow">http://code.google.com/p/jlibs/wiki/AnsiColoring</a></p>
<p>There's also a Javaworld article on this which solves your problem:
<a href="http://www.javaworld.com/javaworld/javaqa/2002-12/02-qa-1220-console.html" rel="nofollow">http://www.javaworld.com/javaworld/javaqa/2002-12/02-qa-1220-console.html</a></p>
http://stackoverflow.com/questions/560797/why-doesnt-the-java-sdk-installer-set-javahome/560843#5608430Answer by Rolf for Why doesn't the Java SDK installer set JAVA_HOME?Rolf2009-02-18T12:25:20Z2009-02-18T12:31:21Z<p>I'm not sure why this is, because the installers clearly solve platform dependant issues (which is ofcourse the whole point of a JVM). Are you sure you aren't mixing the JRE with the JSDK?</p>
<p>Maybe there's a way for your program to search where java is installed (that would be a script I guess), and then set JAVA_HOME and possibly add it to the path.</p>
<p>IBM seems to be doing this trick already:
<a href="http://www-01.ibm.com/support/docview.wss?rs=180&uid=swg21199220" rel="nofollow">http://www-01.ibm.com/support/docview.wss?rs=180&uid=swg21199220</a></p>
<p>Other interesting post hinting at the difference between JRE and JSDK installations:
<a href="http://confluence.atlassian.com/display/CONF26/Set+JAVA_HOME+variable+in+Windows" rel="nofollow">http://confluence.atlassian.com/display/CONF26/Set+JAVA_HOME+variable+in+Windows</a></p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/519422/what-is-the-best-way-to-replace-or-substitute-if-else-if-else-trees-in-programs/519450#5194503Answer by Rolf for What is the best way to replace or substitute if..else if..else trees in programs?Rolf2009-02-06T07:33:49Z2009-02-06T08:19:43Z<pre><code>switch (i) {
case 1: doOne(); break;
case 2: doTwo(); break;
case 3: doThree(); break;
default: doNone(); break;
}
</code></pre>
<p>Having typed this, I must say that there is not that much wrong with your if statement. Like Einstein said: "Make it as simple as possible, but no simpler".</p>
http://stackoverflow.com/questions/509129/why-do-arrays-start-from-zero/509169#5091690Answer by Rolf for Why do arrays start from zero?Rolf2009-02-03T22:19:09Z2009-02-03T22:19:09Z<p>It goes way back to the roots. If you think you hate that, take a look at this, because that's how we used to do it in the old days:
<a href="http://en.wikipedia.org/wiki/Assembly_language#Assembler" rel="nofollow">http://en.wikipedia.org/wiki/Assembly_language#Assembler</a></p>
<p>It's also where the "0 based arrays" come from. It's not all that bad, really. It takes getting used to but it is by far not the most irritating of all language features.</p>
<p>And yes, you are right, it can easily be 1 based, the compiler can solve that for you because a computer language is just a "presentation layer" on top of some machine-code generating process.</p>
http://stackoverflow.com/questions/509042/casting-to-unknown-type-when-class-name-as-a-string/509134#5091340Answer by Rolf for Casting to Unknown Type When Class Name as a StringRolf2009-02-03T22:12:47Z2009-02-03T22:12:47Z<p>I'm not sure it's possible or desirable to avoid having a reference to "Horse" in the callHorse method. Judging from the printstacktrace after a ClassNotFoundException, you throw a hard error if the class is not found for some reason.</p>
<p>Couldn't you, for the same reason, just cast to "Horse" and then catch the classcastexception if something in the Set is not a Horse?</p>
<p>Can you explain why it exactly is that you need to pass in the classname instead of the class?</p>
<p>Maybe you can also use method overloading, but I'd have to test this, because I'm not entirely sure what the precedence is in this case.</p>
http://stackoverflow.com/questions/493403/how-do-you-manage-your-project-life-cycle/499662#4996623Answer by Rolf for How do you manage your project life cycle?Rolf2009-01-31T21:57:40Z2009-01-31T21:57:40Z<p><strong>Development:</strong> We do not start with a template, because the world changes quick enough to make template maintenance a full time job. We do encourage everybody to use the same IDE (Eclipse), so that they can help eachother with their environments.</p>
<p><strong>Project Management:</strong> We are using GForge to manage our projects. Sourceforge is slightly better, but GForge is much cheaper and has a different licensing fee model. GForge incorporates CVS, SVN, Document storage, Issue trackers and integrates everything nicely. This makes it easy to see where the project is at. Open issues, and closed issues with connected code changes, everything is integrated.</p>
<p><strong>Versioning:</strong> Although we tried SVN, we switched back to CVS because it fits our needs better and works fine.</p>
<p><strong>Backups:</strong> Our GForge server, housing all our projects and sourcecode, is running on a VMWare EX server. Backups are done daily on VM level and we make VM snapshots if we feel that we need more frequent restore points for some reason.</p>
<p><strong>Reviving projects:</strong> This is very common in our business. Every project has all it's libraries and build requirements in CVS. The project always has an up-to-date development manual which describes all the steps to get a development environment running, and has a chapter with all the things which are not default, to pay attention to. We try to build software in an as-default-as-possible environment so that developers don't have to spend days tweaking their settings.</p>
<p>Nearly all projects are built using Maven, which also makes life easy for our developers. Ususally reviving a projects only takes a few steps:</p>
<ul>
<li>Download eclipse</li>
<li>Connect to CVS over SSH (extssh is built into Eclipse)</li>
<li>Check out the project (default "Check Out" option)</li>
<li>Run "Maven Eclipse" and refresh Eclipse</li>
<li>Run unittests in Eclipse to see if everything is working.</li>
</ul>
<p><strong>Builds:</strong> All our projects are built on a seperate build server. Every morning the build server does a complete build and tags CVS if all unittests succeed. During the day, hourly builds are made and when there are failures the team automatically gets an email. Usually we use one build server per project, and it is a simple luntbuid server (Linux, Tomcat, Luntbuild).</p>
<p>Both the buildserver and sometimes even the developer machines are VM's. This makes reviving a project really easy. Get the VM from the fileserver, start it up, and you're good to go.</p>
<p>The build server creates daily sites which show unittest coverage statistics, complexity measurements, CVS activity and developer activity (who changed what and when).</p>
<p>All our software comes with self-building database scripts built in. Point the config file to the database, start the software, and it figures out what it needs to do to the database itself. This really comes in handy because the buildserver can just start the software. No special steps needed. Our customers are also happy, they never need to worry about their database, or upgrade scripts.</p>
<p>The whole project lifecycle is managed, documented and tracked in GForge, with the addition of some external spreadsheets for budget tracking because that's simply easier.</p>
<p>Wether you have an integrated project server or not, I think it is really important to have a system. This enables you to switch developers between projects without them getting lost. It saves time. Particularly when a customer comes back to you after 2 or 3 years for modifications on old software (yes, that happens).</p>
<p>All the stuff we use is open source (you can even use an open source fork of GForge). It's not in the tools, it's how you use them.</p>
http://stackoverflow.com/questions/484172/do-we-need-a-java/485127#485127-1Answer by Rolf for Do we need a Java++?Rolf2009-01-27T20:40:03Z2009-01-27T20:40:03Z<p>C++ is object oriented C. Java is already object oriented, so how would we go about another paradigm shift, making it Java++?</p>
<p>In a way I think it is the other way around. Java is way ahead of C++. Java has high level libraries and frameworks, whereas C++ very often still is low-level and intermixed with ansi C (because we can).</p>
<p>Java has good unittesting possibilities, and large communities which are all pointed at the same direction.</p>
<p>Having more "features" does not make a language better. I think it is possible to make it worse.</p>
<p>In the end, putting one language "in front of" the other is not going to help. Select the best tool for the Job. I think Java as a language is pretty ok as it is. C++ however could use some better libraries, like a port of Spring for instance.</p>
http://stackoverflow.com/questions/309711/dependency-injection-framework-for-cocoa/484974#484974-1Answer by Rolf for Dependency injection framework for Cocoa?Rolf2009-01-27T19:58:30Z2009-01-27T20:28:54Z<p>I work with Spring all day and I've checked Groovy. I'm by no means an XCode/Cocoa expert, but IB does only some dependency injection, which Groovy doesn't even really claims to be doing.</p>
<p>I reckon you are not looking for DI, but rather for a well compiled set of integrated libraries which saves you from typing a lot of code which other people also have typed. I think there are no Spring like frameworks for Cocoa because for some reason people tend to see "Open Source" as "not platform dependant" and therefore Cocoa is a bit left out in the cold.</p>
<p>Depending on your needs though, there are some nice free open source libraries available for Cocoa, all listed on CocoaDev in a <a href="http://www.cocoadev.com/index.pl?CocoaOpen" rel="nofollow">nice list</a>.</p>
<p>I know it isn't Spring, but I hope it helps.</p>
http://stackoverflow.com/questions/482466/problem-with-unicode-characters/483230#4832301Answer by Rolf for problem with unicode characters.Rolf2009-01-27T12:31:46Z2009-01-27T12:31:46Z<p>The <a href="http://stackoverflow.com/questions/482466/problem-with-unicode-characters#482500">answer of Jon Skeet</a> is a good one. In addition to that, I want to encourage you to check the whole trip from browser to database, because sometimes the problem is in a really awkward place. In my case, the problem was caused by a bug in the <a href="http://www.rolfje.com/2008/07/20/tomcat-utf-8-and-the-requestdumpervalve/" rel="nofollow">RequestDumperValve in Tomcat</a>.</p>
http://stackoverflow.com/questions/481582/how-can-an-object-oriented-programmer-get-his-her-head-around-database-driven-pro/481713#4817130Answer by Rolf for How can an object-oriented programmer get his/her head around database-driven programming?Rolf2009-01-26T22:51:43Z2009-01-26T22:51:43Z<p>Hi, I guess a bit of pragmatism would be good here. Mappings between objects and tables always have a bit of strangeness here and there. Here's what I do:</p>
<p>I use Ibatis to talk to my database (Java to Oracle). Whenever I have an inheretance structure where I want a subclass to be stored in the database, I use a "discriminator". This is a trick where you have one table for all the Classes (Types), and have all fields which you could possibly want to store. There is one extra column in the table, containing a string which is used by Ibatis to see which type of object it needs to return.</p>
<p>It looks funny in the database, and sometimes can get you into trouble with relations to fields which are not in all Classes, but 80% of the time this is a good solution.</p>
<p>Regarding your relation between category and product, I would add a categoryId column to the product, because that would make life really easy, both SQL wise and Mapping wise. If you're really stuck on doing the "theoretically correct thing", you can consider an extra table which has only 2 colums, connecting the Categories and their products. It will work, but generally this construction is only used when you need many-to-many relations.</p>
<p>Try to keep it as simple as possible. Having a "academic solution" is nice, but generally means a bit of overkill and is harder to refactor because it is too abstract (like hiding the relations between Category and Product).</p>
<p>I hope this helps. </p>
http://stackoverflow.com/questions/477877/is-your-companys-data-audited-by-outside-parties-if-not-should-it-be/477934#4779340Answer by Rolf for Is your company's data audited by "outside" parties - if not, should it be?Rolf2009-01-25T17:05:03Z2009-01-25T17:05:03Z<p>As a software house we don't do much data processing. But our code is audited by an independant external party and I think this is a good thing.</p>
<p>As for data, I think a lot of companies treat data to be "true", just like (dumb) people assume that everthing printed on paper is "true". Therefore I think that external auditing of data validity is a good thing and should be done more often.</p>
<p>Maybe internal data auditing is also a good idea. How many times have you had to call a service desk of a company because they didn't get your name right, or shipped your order to the wrong address, or didn't ship it at all?</p>
http://stackoverflow.com/questions/477612/how-to-sketch-out-a-high-level-architecture-for-a-project-uses-web-services/477631#4776311Answer by Rolf for How to sketch out a high-level architecture for a project uses web services?Rolf2009-01-25T12:20:49Z2009-01-25T12:20:49Z<p>Sorry, I will not do your homework assignments for you. Key pointers: Components are the nouns in your assignment. Actions are the verbs in your assignment. It's all there in front of you.</p>
<p>Impress your teacher, read up on web services, and maybe UML.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/472626/how-to-generically-compare-entire-java-beans/472637#4726373Answer by Rolf for how to generically compare entire java beans?Rolf2009-01-23T11:50:18Z2009-01-23T12:47:27Z<p>To answer your question directly, you could use reflection to do equality checking of beans. There are a few snags you need to be aware of.</p>
<p>There are rules regarding the behaviour of equals() and hashcode(). These rules talk about symmetry, consitency and reflexiveness which may be hard to do when your equals method behaves dynamically based on the other object you're passing in.</p>
<p>Interesting read:
<a href="http://www.geocities.com/technofundo/tech/java/equalhash.html" rel="nofollow">http://www.geocities.com/technofundo/tech/java/equalhash.html</a></p>
<p>Generally speaking, I think you are better off creating your own hashcode and equals methods. There are a fwe good plugins which can automatically generate that code for you based on the class properties.</p>
<p>Having said all this, here are some (old style) methods for getting getters, setters and properties I wrote a long time ago:</p>
<pre><code>private Map getPrivateFields(Class clazz, Map getters, Map setters) {
Field[] fields = clazz.getDeclaredFields();
Map m = new HashMap();
for (int i = 0; i < fields.length; i++) {
int modifiers = fields[i].getModifiers();
if (Modifier.isPrivate(modifiers) && !Modifier.isStatic(modifiers) && !Modifier.isFinal(modifiers)) {
String propName = fields[i].getName();
if (getters.get(propName) != null && setters.get(propName) != null) {
m.put(fields[i].getName(), fields[i]);
}
}
}
return m;
}
</code></pre>
<p>The Getters:</p>
<pre><code>private Map getGetters(Class clazz) {
Method[] methods = clazz.getMethods();
Map m = new HashMap();
for (int i = 0; i < methods.length; i++) {
if (methods[i].getName().startsWith("get")) {
int modifiers = methods[i].getModifiers();
if (validAccessMethod(modifiers)) {
m.put(getPropertyName(methods[i].getName()), methods[i]);
}
}
}
return m;
}
</code></pre>
<p>And the Setters:</p>
<pre><code>private Map getSetters(Class clazz, Map getters) {
Method[] methods = clazz.getMethods();
Map m = new HashMap();
for (int i = 0; i < methods.length; i++) {
if (methods[i].getName().startsWith("set")) {
int modifiers = methods[i].getModifiers();
String propName = getPropertyName(methods[i].getName());
Method getter = (Method) getters.get(propName);
if (validAccessMethod(modifiers) && getter != null) {
Class returnType = getter.getReturnType();
Class setType = methods[i].getParameterTypes()[0];
int numTypes = methods[i].getParameterTypes().length;
if (returnType.equals(setType) && numTypes == 1) {
m.put(propName, methods[i]);
}
}
}
}
return m;
}
</code></pre>
<p>Maybe you can use this to roll your own.</p>
<p><strong>Edit:</strong> Ofcourse the <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/builder/EqualsBuilder.html#reflectionEquals(java.lang.Object,%20java.lang.Object)" rel="nofollow">reflectionbuilder</a> in <a href="http://stackoverflow.com/questions/472626/how-to-generically-compare-entire-java-beans#472705">Aaron Digulla's answer</a> is much better than my handywork. </p>
http://stackoverflow.com/questions/425281/java-style-properly-handling-exceptions/425506#4255062Answer by Rolf for Java Style: Properly handling exceptions.Rolf2009-01-08T19:17:49Z2009-01-08T19:17:49Z<p>Use Runtime Exceptions, combined with an exploding catch-all at the top. It's a bit scary at first, but gets better once you get used to it.</p>
<p>In my web applications, everything thrown is Runtime. There are almost no "throws" clauses, and I only have catchblocks in places I really can (or want) to handle the exception. At the highest level, there is a catch Throwable which renders a technicall error page, and writes a log entry.</p>
<p>A Log4J mailer sends me the log entry and 10 log entries preceding it. So when the client calls, I usually already know that there was a problem.</p>
<p>With proper (unit)testing and clean programming, the added cleanliness and readability outweighs the loss of checked exceptions anytime.</p>
http://stackoverflow.com/questions/416500/string-comparison-individual-comparison-vs-appended-string-comparison/416706#4167060Answer by Rolf for String Comparison : individual comparison Vs appended string comparisonRolf2009-01-06T14:19:53Z2009-01-06T14:25:09Z<p>I would add the two groups in two arrays, and then loop over the arrays to compare the individual strings in that array. A good example is already in the ansewers, given by Markus Lausberg.</p>
<p>I would not be concerned about performance costs. Just write it in the most readable way possible. The Java compiler is very good in performance optimizations.</p>
<p>Example method:</p>
<pre><code> public boolean compareGroups(String[] group1, String[] group2){
if (group1.length != group2.length ){
return false;
}
for (int i = 0; i < group1.length; i++) {
if (!group1[i].equals(group2[i])){
return false;
}
}
return true;
}
</code></pre>
<p>And calling the method is ofcourse simple:</p>
<pre><code> String[] group1 = new String[]{"String 1", "String 2", "String 3"};
String[] group2 = new String[]{"String 1", "String 2", "String 3"};
boolean result = compareGroups(group1, group2);
</code></pre>
http://stackoverflow.com/questions/411751/daily-builds-is-that-realistic/411800#4118003Answer by Rolf for Daily builds, is that realistic?Rolf2009-01-04T22:24:38Z2009-01-04T22:24:38Z<p>I have heard this complaint a lot, and even at my company.It's just a way of working. If you're not capable of having your stuff compilable and testable at all times, you're probably working on your problems in an erratic way, and are touching too much code at once. You're a juggler. Jugglers don't program.</p>
<p>On all my projects, we do HOURLY builds. We use Luntbuild to do that, and it will mail all project members as soon as the build fails, and will keep on mailing until the build works. Broken code does not get checked in, and when somebody breaks the build, he has to get cookies for the whole team (or other fitting "humiliation" :-) ).</p>
<p>Each week we try to do an installation of the software on our testservers, so that our test department can test the software.</p>
<p>You will see that this will result in better code, and a shippable project at almost any time during the project because:</p>
<ul>
<li>You are forced to break down your work in smaller, easier to grok and therefore easier to code pieces, which will result in less bugs.</li>
<li>You are forced to update and check in often, which makes the project go faster because you benefit from reuse of your collegues earlier in the project.</li>
<li>The code will be cleaner because you want to be able to write a unittest for it (otherwise the "coverage police" will get you)</li>
</ul>
<p>I realize that this is not a real answer to the "how do you keep the builds working" question, I think there is not a really silver bullet answer for that. You just have to start doing it and see if it works for you. I think the larger part of the professional programmers agree that continuous integration, automated testing and daily builds are a goog thing.</p>
<p>My current project has 2 problems, one being that the buildserver does not mail due to a network problem, and the other being that there is too much panic. This means that failin hourly builds are noticed much later, and weekly installations are not possible because of unfinished functionality. You can immediately see reflections of this problem to the project, and the motivation of team members. It's just not going "smoothly". </p>
<p>I hope this helps. Keep them green! (the unittests, that is)</p>
<p>edit: The "pressing the button" you are refering to is the "single step build". It means that you have a script which does your build (or ant, or maven, or whatever), and you use that script to do the tests aswel. So when your automated buildprocess works, you know you have a shippable product. You just run the script and send the output to the customer. Our build script produce a directory structure which gets copied 1-on-1 to the CD we deliver the software with.</p>
http://stackoverflow.com/questions/1805923/incremental-deployment-of-java-web-applications/1805953#1805953Comment by Rolf on Incremental deployment of java web applicationsRolf2009-11-27T12:56:05Z2009-11-27T12:56:05ZYes there are tools to do that, and some are described in some answers. From my experience, sending classfiles to update a production war is ALWAYS a bad idea. Not having the problem is always better than having tools to manage the problem.http://stackoverflow.com/questions/1805819/cross-site-tomcat-form-post-not-working/1805920#1805920Comment by Rolf on Cross-site tomcat form post not workingRolf2009-11-26T22:51:29Z2009-11-26T22:51:29ZYes, my bad, I had the getParameter() code in there originally but thought I could loose it to make the question a bit shorter.http://stackoverflow.com/questions/879965/how-to-detect-unused-properties-in-spring/880094#880094Comment by Rolf on How to detect unused properties in SpringRolf2009-05-19T09:59:26Z2009-05-19T09:59:26ZThere is no getter for the used properties, and no getter for all properties.http://stackoverflow.com/questions/879965/how-to-detect-unused-properties-in-spring/880050#880050Comment by Rolf on How to detect unused properties in SpringRolf2009-05-19T09:58:14Z2009-05-19T09:58:14ZThat would require all PropertyPlaceHolderConfigurers to be editted, which is possible, but I don't want to do. By using the solution above, I can also detect missing properties in new PropertyPlaceHolderConfigurers which are added by "the new guy" :-)http://stackoverflow.com/questions/565252/how-to-set-a-strings-colour-before-printing-it-to-screenComment by Rolf on How to set a string's colour before printing it to screen.Rolf2009-02-19T13:14:25Z2009-02-19T13:14:25ZStrings do not have color information. Please specify what you are trying to do. Is it a Swing application? Or do you need ANSI-color on a terminal screen?http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/244596#244596Comment by Rolf on Dealbreakers for new programming jobs?Rolf2009-02-06T20:16:47Z2009-02-06T20:16:47ZIf you travel a long way for an interview, you can be sure that's going to be your daily trip. Why do you expect to be compensated for that one extra trip? Over here it's considered very rude and arrogant to ask for travel refunds.http://stackoverflow.com/questions/511013/how-to-handle-outofmemoryerror-in-javaComment by Rolf on How to handle OutOfMemoryError in Java?Rolf2009-02-04T16:14:17Z2009-02-04T16:14:17ZHandling "OutOfMemoryError" is not advisable. Could you provide us with some details, as to where the objects are, and where the serialized data need to go? There are ways to limit memory usage based on your answer.http://stackoverflow.com/questions/462693/logoff-script-to-change-userComment by Rolf on Logoff script to change userRolf2009-02-03T21:32:56Z2009-02-03T21:32:56ZI'm not entirely sure, but running something after logoff feels like a major security breach. That script would have to run as "root" or "administrator" I guess. Is this to be used unattended?http://stackoverflow.com/questions/472626/how-to-generically-compare-entire-java-beans/472881#472881Comment by Rolf on how to generically compare entire java beans?Rolf2009-01-23T14:03:14Z2009-01-23T14:03:14ZWhen you've implemented it succesfuly, don't forget to mark one of the answers as "answer". This will make SO a nice reference for others (and no, you don't have to choose mine ;-) )http://stackoverflow.com/questions/472626/how-to-generically-compare-entire-java-beans/472855#472855Comment by Rolf on how to generically compare entire java beans?Rolf2009-01-23T14:00:55Z2009-01-23T14:00:55ZGood point indeed. jguru has a nice comparison online:
<a href="http://www.jguru.com/faq/view.jsp?EID=246569" rel="nofollow">jguru.com/faq/view.jsp?EID=246569</a>
http://stackoverflow.com/questions/301993/is-agile-development-dead/322160#322160Comment by Rolf on Is Agile Development Dead?Rolf2009-01-06T22:28:45Z2009-01-06T22:28:45ZBrilliant answer!http://stackoverflow.com/questions/416500/string-comparison-individual-comparison-vs-appended-string-comparison/416706#416706Comment by Rolf on String Comparison : individual comparison Vs appended string comparisonRolf2009-01-06T14:27:19Z2009-01-06T14:27:19ZThe question was about Java, if I read correctlyhttp://stackoverflow.com/questions/388599/how-does-the-hamming-code-work/388669#388669Comment by Rolf on How does the Hamming code work?Rolf2009-01-04T22:38:16Z2009-01-04T22:38:16ZBriliant explanation, extra points for the diagrams. This answer is the missing link between mortals and the wikipedia page on Hamming codes. :-) Thanks!http://stackoverflow.com/questions/401140/stackoverflow-how-do-you-feel-about-others-seeing-posts-youve-deleted/401199#401199Comment by Rolf on StackOverflow: How do you feel about others seeing posts you've deleted?Rolf2008-12-30T19:32:00Z2008-12-30T19:32:00ZBut wait, if you've deleted your own brilliant answer, you don't mind somebody copying it and using it under their own name? That's a bit strange. I'd rather have it undeleted then.http://stackoverflow.com/questions/237386/whats-your-favorite-feature-in-java/237457#237457Comment by Rolf on What's your favorite feature in Java?Rolf2008-12-24T13:05:47Z2008-12-24T13:05:47ZEllery, sooner or later you discover that you can expand the Collections to do almost anything you want. In order to do that, you need to turn "Zen" and let the "control freak" in you go. Everything will be easier. You'll see.