Using smartgwt 2.4.0 i have created a war. Running on jetty everything works fine. But once I deploy my war on tomcat, everything works fine except for my images; like the logo.
My smartgwt is mavenized, I dont know if this causes the problem. Anyways my path to my images is: src/main/webapp/images
So bassicly in my webapp I've created a directory images. When I check my war, this directory exists, altho tomcat seems to refuse to load my images.
In my java code I set a certain image like so (again on jetty it works fine, except for tomcat):
Img logo = new Img("/images/logo.png", 1000, 100);