Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试实现基本的网页缓存,但无法找到带有解释的资源。我一直在寻找没有解释的代码或没有代码的解释(在文档中)。谁能提供一个简单的教程?据我所知,步骤如下:
实现监听器 4.1 方向(找不到 3.0 版本)
添加ehcache.xml(自己写了一个简单的)
添加到 web.xml 的路径 - 这是2.7 版本(找不到 3.0 版本)
有谁知道在哪里可以找到 ehcache 3.0 实现的正确文件?
Web 过滤器在 Ehcache 3 中不再存在。它太具体了。但是,您可以轻松实现自己的。侦听器也已被删除。你将不需要它们。
第一步是配置 Ehcache。查看文档和示例。
然后,只需缓存页面。我建议使用Ehcache 2 过滤器的简化版本。