Wicket serving images from File System
问题 I am pretty new to Wicket and i have some difficulties with using resource references. I am using wicket 1.5.4 and have following problem: I store images on the file system. I have class ImageElement which holds part of the file path relative to configured rootFilePath (i.e dir1/dir2/img1.png). On the page I add Image as follows: new Image("id",ImagesResourceReference.get(), pageParameters) where page parameters includes image path parameter (path="/dir1/dir2/img1.png"). My questions are: Is