tomcat
tomcat实现手机安装包下载:
- 将要下载的app放到Tomcat\webapps\ROOT下面
- 运行Tomcat
- 访问http://服务器ip:端口号/app名称
tomcat8 because there was insufficient free space available after evicting expired cache entries
找到conf/context.xml配置文件,在context里面添加如下配置:
<Resources cachingAllowed="true" cacheMaxSize="100000" />
第二种方法,就是禁用缓存,disable the cache,在context标签里面添加如下设置:
<Resources cachingAllowed="false"/>