weblogic 上的 java 自定义缓存重新加载

发布于 2024-12-14 01:54:17 字数 150 浏览 2 评论 0原文

我需要通过从数据库读取 xml 来缓存 xml bean java 对象。我在内存中使用 HashMap 来维护我的 java 对象。我使用 spring 作为 DI 和 Weblogic 11g 应用服务器。

您能否建议我一种在 xml 文件更新时重新加载缓存的机制。

I have a requirement to cache xml bean java objects by reading xml’s from database . I am using a HashMap in memory to maintain my java objects. I am using spring for DI and Weblogic 11g app server.

Can you please suggest me a mechanism to reload cache when there is an update in xml files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我是有多爱你 2024-12-21 01:54:17

您可以使用 weblogic p13n 缓存来实现此目的,而不是使用您自己的 HashMap 来缓存 java 对象。您必须配置 p13n-cache-config.xml 文件,其中包含缓存的 TTL、最大值等。

第一点,TTL时间结束后,缓存会自动重新加载。对于手动清除缓存,您可以实现 Servlet 之类的东西,您可以直接从浏览器访问它(可以将其限制为特定 URL)。在该 servlet 中清除要重新加载的缓存。

weblogic p13n 缓存还为您提供了集群感知缓存清除的方法,如果您需要它,如果您想使用自己的 HashMap 进行缓存,请为该 HashMap 提供更新方法并清除要重新加载的 java 对象然后调用缓存创建方法。

You can make use of weblogic p13n cache for this purpose, instead of using your own HashMap to cache the java objects. You will have to configure p13n-cache-config.xml file, which contains, TTL, max value etc. for your cache.

Coming to the first point, the cache will be automatically reloaded after the TTL time is done with. For manually clearing cache, You can implement a Servlet kind of thing, which you can hit directly from your browser (can restrict it for a particular URL). In that servlet clear the cache which you want to reload.

weblogic p13n cache provides you method for cluster aware cache clear as well, in case you need it, in case you want to use your own HashMap for caching, provide a update method for that HashMap and clear the java objects that you want to be reloaded and then call the cache creation method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文