我正在使用 Tapestry 5.3.1 开发应用程序
我曾尝试使用 MVC 资源映射来缓存图像,但它不起作用!
这是我的编码:
上下文xml配置:
<mvc:resources mapping="/images/**" location="file:${catalina.home}/props/" cache-period="1234" />
<mvc:annotation-driven />
索引.tml:
<img src="/images/home.jpg" width="130" />
我在 tomcat catalina home path props 文件夹中有这个 home.jpg 文件。
应用程序运行成功,但是图像没有加载!!
谁能帮我?