Tag Archives: web

Demystifying HttpServletRequest properties…

I always find myself writing little test cases to figure out which methods to call on HttpServletRequest to get path / parameter information when doing low level Servlet and Filter programming. The method naming and Javadoc is pretty poor for … Continue reading

Posted in Java, Software Engineering | Tagged Java, tips, web | Leave a comment

visural-wicket 0.6.5 release is available!

It’s taken longer than I’d hoped, but the next release of the visural-wicket library for Apache Wicket is now available – 0.6.5 This version is mostly a minor enhancement and fix release, but includes almost 6 months worth of patches … Continue reading

Posted in Java, Software Engineering, Wicket | Tagged Java, open-source, releases, visural-wicket, web, wicket | 4 Comments

Implementing a “Draft Mode” with Apache Wicket Forms

A question came up on wicket-users recently about whether it’s possible to implement a form in Wicket whereby you can bypass the validation temporarily so that users could save prior to submitting the form. Think something along the lines of … Continue reading

Posted in Java, Software Engineering, Wicket | Tagged guides, Java, ui, web, wicket | 3 Comments

Getting a non-relative (absolute) URL for a Wicket page

Just a quick Wicket tid-bit I found today – generally with Wicket, when you create a BookmarkablePageLink or use “urlFor(…)“, the resulting URL is stated as a relative path, e.g. “../../something/mypage” (i.e. those that contain “..”). Sometimes you need to … Continue reading

Posted in Java, Software Engineering, Wicket | Tagged Java, tips, web, wicket | 2 Comments