Spring MVC - include static files / javascript , css

后端 未结 7 2029
猫巷女王i
猫巷女王i 2021-01-02 06:48

I have created MVC application.

I want to include js or css file into jsp.

My static files ar under:

- webapp
        -js/jquery.js
        -WEB-I         


        
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-02 07:39

    I just followed Mkyong Tutorial to place css, js, jquery & image files. Its working for me.

    In servlet-context.xml

    
        
    

    In JSP , import tag library

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    

    and add like

    
    

提交回复
热议问题