我是IntelliJ新手,我创建了一个运行配置来使用intellij调试我的web应用程序。
我所做的是:
我发现的问题是:
我注意到:
1. but I verified html source is successfully changed, and the html file being deployed to the exploded war directory was also successfully changed.
2. when I clicked the "redeploy" button, then I could see the html get updated.
3. I have also tried adding cachingAllowed="false" to tomcat context.xml file, but no luck.
我的问题是:
谢谢。
IntelliJ版本:终极2018.1
Tomcat版本:apache 9.0.7


发布于 2018-05-29 14:55:05
我在这里找到了答案:360000203964
将"cacheable“属性设置为false,如下所示为TemplateResolver定义:
<property name="cacheable" value="false" />https://stackoverflow.com/questions/50395971
复制相似问题