JSP doesn't open CSS, Images and JS

前端 未结 3 1833
隐瞒了意图╮
隐瞒了意图╮ 2020-12-20 08:35

I\'m trying to put CSS, JS and IMGs on my JSP, but doesn\'t work, it\'s strange because I use c:url and \"jstl/core\"

I\'m use JSP, jstl and servlet, no

3条回答
  •  抹茶落季
    2020-12-20 08:51

    I have encountered the same problem and have not resolved it for a long time. Then I realized that it was a problem from the path of the images.

    Wrong path is like that;

    src>main>resources>images

    The order of files(path) should definitely be as follows.

    src>main>webapp>resources>images

    and you should to call the function like that;

    " alt=""/>
    

提交回复
热议问题