In my application I load images from the database into a Wicket Image Object and display it. This works most of the times, but has some nasty side effects (images within the list swap sometimes, a js error in the console )
The error I get is:
Resource interpreted as Image but transferred with MIME type text/html
this is my java:
final IResource imageResource = new DynamicImageResource() {
@Override
protected byte[] getImageData(final IResource.Attributes attributes) {
return bean.getImage();
}
};
and my html
<img wicket:id="image">
this is the html code thats rendered out in the browser:
<img src="./.?308-IResourceListener-homePanel-tabPanel-tabs-panel-data-rows-3-image">
I checked the tomcat's web.xml for mime-mapping -> all image types (png, jpg are correct). I'm not sure what I'm doing wrong. Anyone has an idea?
I use Wicket 6.16.0, Tomcat 7.0.54
Your
getImage()
probably returnsnull
This is what happens in
DynamicImageResource
So the mimetype will get set to
getFormat()
which defaults to PNG.