我正在尝试设置自由配置文件服务器,以便可以缓存POJO。我的问题是如何在我的Java代码中访问DistributedMap?

我的server.xml:

<featureManager>
    <feature>jsp-2.2</feature>
    <feature>jaxrs-1.1</feature>
    <feature>localConnector-1.0</feature>
    <feature>appSecurity-2.0</feature>
    <feature>jpa-2.0</feature>
    <feature>jdbc-4.0</feature>
    <feature>jndi-1.0</feature>
    <feature>cdi-1.0</feature>
    <feature>webCache-1.0</feature>
    <feature>distributedMap-1.0</feature>
</featureManager>

<distributedMap id="baseCache" libraryRef="TSPlib" memorySizeInMB="500" jndiName="services/cache/baseCache">
    <diskCache></diskCache>
</distributedMap>

<library id="TSPlib">
    <folder dir="C:\TSP\bin"></folder>
</library>


我在下面尝试了此代码(承认是用于WAS的),但是我找不到DistributedMap的正确名称空间,也找不到它所在的jar。

公共类CachingService {

private DistributedMap cache = null;

public CachingService() {
    InitialContext ctx;
    try {
    ctx = new InitialContext();
          cache = (DistributedMap) ctx.lookup("services/cache/baseCache");
    } catch (NamingException e) {
          e.printStackTrace();
    }
}

最佳答案

看起来像是一个错字,就像在您提供的jndiName="services/cache/baseCache"的distributedMap配置中以及在您使用的查找中一样:

如果您不提供自定义jndiName,则默认为ctx.lookup("services/cache/TestCache")。见distributedMap-1.0

10-08 13:22