1

我正在使用 apache-tomcat-7.0.35。我在 server.xml 中定义了一个环境变量,如下所示

<GlobalNamingResources>

        <Environment name="sam" 
                 value="D:\AppServers\apache-tomcat-7.0.35\conf\sample.xml"
                 type="java.lang.String" override="true"/>

  </GlobalNamingResources>

我在 context.xml 的上下文元素中使用 ResourceLink 元素

<?xml version="1.0" encoding="UTF-8"?>
<Context path="/Practice_1" docBase="/Practice_1"
    crossContext="true" reloadable="true" debug="1">
<ResourceLink name="sam" global="sam" type="java.lang.String"/>

</Context>

当我尝试在代码中使用这个值时

 Context initCtx = new InitialContext();
        String configPath = (String)initCtx.lookup("sam");

它的投掷javax.naming.NameNotFoundException.javax.naming.NameNotFoundException: Name [sam] is not bound in this Context. Unable to find [sam].

我该如何纠正这个问题?

4

2 回答 2

2

tomcat jndi 具有默认名称空间“java:comp/env”。

将您的代码修改为

Context initCtx = new InitialContext();
String configPath = (String)initCtx.lookup("java:comp/env/sam");

或者

Context initCtx = new InitialContext();
Context rootCtx = (Context) initCtx.lookup("java:comp/env");
String configPath = (String)rootCtx.lookup("sam");
于 2013-06-23T07:57:34.310 回答
1

如果我没记错的话,你不需要修改 server.xml 。

修改后的 context.xml

<Resource auth="Container"            java.naming.factory.initial="org.jnp.interfaces.NamingContextFactory" 
factory="de.example.CXIResourceLocator"
name="bean/CXIResourceLocator"
type="de.example.Bean"/>

web.xml

<resource-env-ref>
    <description>
        Connection pooling.
    </description>
    <resource-env-ref-name>bean/CXIResourceLocator</resource-env-ref-name>
    <resource-env-ref-type>
        de.example.Bean
    </resource-env-ref-type>
</resource-env-ref>

bean/CXIResourceLocator should match in both context and web xmls.

由于我不知道您这样做的目的,因此我无法为您提供更多帮助。:-(

点击此链接了解更多详情。阿帕奇给出了很好的例子。

希望这有帮助。 http://tomcat.apache.org/tomcat-7.0-doc/jndi-resources-howto.html

于 2013-03-18T13:51:31.787 回答