servlets - Not able to show image in jsp -
i have added image folder in webapp/images. structure of app
myapp --src --main --java --webapp --images
this doing in jsp <img src="images/siteicon.png"/>
. can me, doing wrong here. using intellij
your path image should start slash. like:
<img src="/images/siteicon.png"/>
Comments
Post a Comment