-
Recent Posts
Recent Comments
- anonymous on A Discussion on Domain Driven Design: Value Objects
- Ravi Mukkavilli on PTOM: The Open Closed Principle
- Anonymous on Matrix Resource Management and Agile
- Kevin Reilly on Matrix Resource Management and Agile
- N Horton on Agile vs. Traditional Development Cost Models …Maybe
Archives
Categories
Meta
Category Archives: Java
Observations on the Play! framework
Java stacks certainly are tall. You have your web server, your application server, servlet container, an IoC container, JPA, JAAS, JAX-RS, and that’s before you actually write any code. The Play! framework seems set to change all that. It throws … Continue reading
Also posted in Uncategorized
1 Comment
Java IoC containers and classpath scanning (or what I’ve been looking for from .NET for months)
Frustrated with the typical way I saw IoC used in Java where every example I found involved thousands of lines of XML and/or Java code to configure Java beans or components. This is very different than IoC typically used in … Continue reading
Also posted in Architechture
3 Comments
Project Management in Java: A Confused .NET Developer’s Perspective
When I was first introduced to workplace Java the amount of ways one could define a project appeared to be restrictive, confusing and a point of frequent friction. While those things may all be true, it’s a great deal better … Continue reading
Also posted in Agile Project Coaching & Management
4 Comments
Anonymous Types In C# Are A Crippled Hack
I’ve been learning a bit of Java recently, reading Unlocking Android and playing with the Android SDK to try and learn how to write apps for my Droid. I have known, intellectually, about some of the key differences between .NET … Continue reading
Awesome Code Analysis Plugin for Java
I was browsing the plugins available for Intellij and came across this gem: http://findbugs.sourceforge.net/. Hats off to University of Maryland for this nifty little tool (does not require Intellij). Findbugs does static analysis of your projects and identifies patterns for … Continue reading
Also posted in Uncategorized
Leave a comment
Seeking Closures
So, what’s a closure and why should I care? As Bob Dylan said, “…the times they are a changin’.” The strange world of functional programming, once restricted to more esoteric languages such as LISP, Erlang and Haskell, is now invading … Continue reading
Also posted in BDD (Behavior Driven Development)
5 Comments
Note on sets in hibernate/nHibernate
I just wanted to share this with anyone who is not aware… Caveat: After reviewing my original post and the comments that follow I had initially elected to change the container tag in the example below from set to list. … Continue reading
Also posted in Uncategorized
Leave a comment
Nested classes with JUnit
Recently I was playing with JUnit 4.X. I wanted to be able to define tests in nested classes as I had before with NUnit. This was to facilitate BDD-ish test definitions, where I break up unit tests by test context. … Continue reading
Also posted in Agile Project Coaching & Management
3 Comments
JUnit 4 TestSuite Declaration
This is mainly for my own reference but if it helps people out there great! The documentation on this aspect of JUnit is very poor. package agalliao.wealthManagment.domain;import org.junit.runner.RunWith;import org.junit.runners.Suite; @RunWith(Suite.class)@Suite.SuiteClasses({ investmentTests.class, catalogTests.class, markerTests.class })public class AllTests { // why on … Continue reading
Also posted in JUnit
28 Comments
