One thing that is rapidly becoming clear is a lot of different concepts get mixed together when you start playing with JSP. On the face of it it’s a simple model, your JSP code get built into a Java class (of type servlet) which is a combination on normal Java code and JSP mark up [...]
Archive of posts tagged jsp
JSP tags
Arrggh. I’ve just wasted the best part of half a day scratching my head as to why I was unable to iterate through a Java HashMap in a JSP page: <c:forEach var=”entry” items=”${model.jvmInfo}” varStatus=”status”> <tr> <td> ${entry.key} </td> <td> ${entry.value} </td> </tr> </c:forEach> It would of been immediately clear had I looked at the resulting [...]
Bifurcated Weekend
The weekend was one of two halves, one half LRP and the other half drinking bubbly in gardens. I worked late on Thursday to get everything I needed out of the door for our “alpha” release so I could take Friday off. This included a crash course in Java Server Pages so I could make [...]