我在springboot中使用freemaker模板引擎,无法正确加载静态资源
首先,确认静态资源没有被拦截器拦截
后来发现是路径错了
我在application.yml设置了
server:
servlet:
context-path: /all
所以在引用static资源时应
<script src="/all/js/iconfont.js"></script>
不能
<script src="/js/iconfont.js"></script>