Include css and js file in every jsp page

前端 未结 5 1046
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-03 14:00

I have common css and js files that i include in every jsp file.

So what\'s the best practice to include them in every page ?

I used to use <%@

5条回答
  •  温柔的废话
    2021-01-03 14:44

    You can try this without any framework, in your web.xml:

    
       
         Display
         *.jsp
         false
         false
         false
         /template/header.jsp
         /template/footer.jsp
       
     
    

    See more here

提交回复
热议问题