Not able to link CSS and images

后端 未结 2 1859
青春惊慌失措
青春惊慌失措 2021-01-23 19:01

I am working on a Spring, Hibernate, JSP application. I am trying to display an image from my JSP page. The image not displayed on the browser. I am also not able to link my CSS

2条回答
  •  感动是毒
    2021-01-23 19:17

    I have resolved the issue by adding following mapping in web.xml file

    
            default
            *.css
        
        
            default
            *.js
        
        
            default
            *.gif
        
        
            default
            *.jpg
        
        
            default
            *.png
        
    

    and also by adding <%=request.getContextPath()%> in image src url. Like

提交回复
热议问题