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: [...]
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 [...]
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 [...]
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 [...]
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 [...]