Embracing the Messiness in Search of Epic Solutions

Month: August 2014

  • IntelliJ: Handling SVN Global Ignore List

    PROBLEM Every time we check out a project from SVN for the first time, we always have to remember to set the SVN ignore list in IntelliJ. SOLUTION NOTE: We only need to perform these steps just once per development machine. To do so, we configure the SVN global ignore list and have IntelliJ to… Read More…

  • Spring: Invoking Stored Procedure

    PROBLEM There are many ways to skin a cat… so is invoking a stored procedure using Spring. Let’s assume we want to invoke the following stored procedure that accepts 3 arguments (person ID, start date, end date):- This stored procedure returns a result set where each row contains a person ID, a date and a… Read More…