如何禁用JavaScript文件的版本控制?

时间:2016-02-25 07:51:24

标签: wicket

如何禁用JavaScript文件的版本控制?现在我看到了

<script type="text/javascript" src=".../modal-ver-1455723568000.js"></script>

但我想要

<script type="text/javascript" src=".../modal.js"></script>

否则我必须一次又一次地在Chrome devtools中设置断点。

感谢。

1 个答案:

答案 0 :(得分:2)

YourApplication#init()添加

if (usesDevelopmentMode()) { 
  // to disable the timestamps in the names
  getResourceSettings().setResourceCachingStrategy(
    NoopResourceCachingStrategy.INSTANCE);

  // to disable caching in the browser
  getResourceSettings().setDefaultCacheDuration(Duration.NONE);
}