JBossCache 的 Spring 配置
我正在尝试使用 Spring 配置文件配置 JBossCache 的实例(最终在 Tomcat 中使用)。我没有在网上看到任何示例,也没有尝试找出示例 JBoss Microcontainer 格式和 Spring IoC 之间的映射。
有人有 JBoss Cache 的 Spring 配置示例吗?
I'm trying to configure an instance of JBossCache using a Spring config file (for eventual use in Tomcat). I don't see any examples online and trying to figure out the mapping between the sample JBoss Microcontainer format and Spring IoC.
Does anyone have any example Spring configs for JBoss Cache?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JBossCache(至少是 v3)非常吸引人的方面之一是 API 主要由符合 JavaBean 的类组成。这使得它们在 Spring 中非常容易连接。
JBoss MicroContainer 格式并没有做任何特殊的事情,它只是 POJO setter 和构造函数注入。因此,与其尝试将 JBossMC 语法转换为 Spring,不如直接查看类本身。 JBossCache 文档还包含大量编程配置的示例。
这是我的应用程序中使用 Spring 3
@Bean
样式配置的示例。转换成 XML synyax 很容易,但是这样要好得多:One of the very appealing aspects of JBossCache (v3, at any rate) is that the API consists mainly of JavaBean-compliant classes. This makes them very easy to wire up in Spring.
The JBoss MicroContainer format isn't doing anything special with it, it's all POJO setter and constructor injection. So, rather than trying to translate JBossMC syntax into Spring, just look directly at the classes themselves. The JBossCache docs also contain plenty examples of programmatic configuration.
Here's an example from my app that uses Spring 3
@Bean
-style config. It's easy enough to translate into XML synyax, but this is much nicer: