Add Me!Close Menu Navigation

Just my humble place...

Add Me!Open Categories Menu
1 oktober
Posted in Groovy and Grails

Changing default homepage for a Grails application

You can set the default homepage for a Grails application by modifying the `grails-app/conf/UrlMappings.groovy` file. In a new Grails application this file will look like class UrlMappings { static mappings = { “/$controller/$action?/$id?”{ constraints { // apply constraints here } } “/”(view:”/index”) “500″(view:’/error’) } } Replace the line: “/”(view:”/index”) with: [...]

15 september
Posted in Programming

Sprookje van 1001 frameworks

In mijn tot nu toe nog jonge leven speelden sprookjes altijd een belangrijke rol. Wie kent de verhalen van [Hans en Grietje][1], [Kleinduimpje][2] en [Roodkapje][3] niet. Later kwamen daar verhalen bij zoals [Dr Who][4], [Battlestar Galatica][5] & [Avatar][6]. Dan weten jullie meteen welke genre sprookjes ik graag mag bekijken Het [...]

1 september
Posted in Programming

Functional Code Coverage using Cobertura

So assume you are assigned to a JEE/Web project with no written functional requirements, no technical design, no functional and unit tests and even no business process description. Sounds really hopeless, but it is your responsibility to learn the system and make adjustments to it. Does this sound familiar?? Hopefully [...]

1 september
Posted in Tools

Distributed Deployment with Hudson & SSH

Have you already implemented an multi-server artifact deployment using a Continuous Integration Engine? If not, then read ahead and maybe this article is of help. The need for Continuous Integration A good practice in a software development methodology and lifecycle is the use of a Continuous Integration Engine. The adoption [...]

16 augustus
Posted in Tools

DevNullSMTP

De applicatie die je gaat ontwikkelen moet email versturen maar hoe ga je dat testen?? Er zijn een aantal opties: * je vraagt aan de support organisatie of ze een exchange mailbox willen inregelen * je richt een mailserver in gebruikmakende van [James][1] of alternatieven * je maakt helemaal geen [...]