Jetty JNDI配置与Spring查找

时间:2014-10-24 17:30:52

标签: spring jetty jndi

我在Jetty服务器上遇到JNDI配置问题。我无法以任何方式配置它,之后Spring(3.0.5)可以检索JNDI变量。

我有一些我不想存储在属性中的凭据,因此它不会存在于git repo中。我的Web应用程序在Jetty(最新版本9.2.3)上运行,因此我想出了将此凭据存储在Jetty Web应用程序上下文中的想法。 Jetty使用jetty-env.xml提供此类解决方案。所以我在WEB-INF /中创建了jetty-env.xml文件,如下所示:

<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">

<Configure id="webappCtx" class="org.eclipse.jetty.webapp.WebAppContext">

  <New id="username"  class="org.eclipse.jetty.plus.jndi.Resource">
    <Arg><Ref refid="webappCtx"/></Arg> <!-- scope -->
    <Arg>server/username</Arg> <!-- name -->
    <Arg type="java.lang.String">myUsername</Arg> <!-- value -->

  </New>

  <New id="password"  class="org.eclipse.jetty.plus.jndi.Resource">
    <Arg><Ref refid="webappCtx"/></Arg> <!-- scope -->
    <Arg>server/password</Arg> <!-- name -->
    <Arg type="java.lang.String">qwerty</Arg> <!-- value -->
  </New>

</Configure>

之后我在web.xml中定义了绑定,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="MyWebApp" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<display-name>My Web App</display-name>

<!-- INITIALIZE SPRING -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:/spring-context.xml</param-value>
</context-param>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- JETTY-ENV JNDI -->
<resource-ref>
    <res-ref-name>server/username</res-ref-name>
    <res-type>java.lang.String</res-type>
</resource-ref>
<resource-ref>
    <res-ref-name>server/password</res-ref-name>
    <res-type>java.lang.String</res-type>
</resource-ref>

</web-app>

以这种方式配置我的Spring上下文:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:aop="http://www.springframework.org/schema/aop"
   xmlns:amq="http://activemq.apache.org/schema/core"
   xmlns:tx="http://www.springframework.org/schema/tx"
   xmlns:ehcache="http://www.springmodules.org/schema/ehcache"
   xmlns:jee="http://www.springframework.org/schema/jee"
   xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
        http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.2.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
        http://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd">

    <jee:jndi-lookup id="serverUsername" jndi-name="server/username" expected-type="java.lang.String" resource-ref="true" />
    <jee:jndi-lookup id="serverPassword" jndi-name="server/password" expected-type="java.lang.String" resource-ref="true"/>

    <bean name="abstractServerConnectionFactory" class="my.package.ServerConnectionFactory" abstract="true">
        <constructor-arg value="${server.host}"/>
        <constructor-arg value="${server.port}"/>
        <constructor-arg ref="serverUsername"/>
        <constructor-arg ref="serverPassword"/>
    </bean>
</beans>

之后我启动了Jetty并启用了--add-to-startd=jndi,我在创建javax.naming.NameNotFoundExceptionserverUsername时始终会serverPassword。我尝试了许多修改,但似乎没有工作。我试过了:

  • org.eclipse.jetty.plus.jndi.Resource更改为org.eclipse.jetty.plus.jndi.EnvEntry,然后通过web.xml中的resource-env-ref引用它
  • 将资源范围设置为JVM而不是webapp,以便将<Arg><Ref refid="webappCtx"/></Arg>更改为<Arg></Arg>,如上所述here
  • 添加自动绑定,而不使用提及here
  • 的web.xml
<Call name="bindToENC">
    <Arg>server/username</Arg>  <!-- binds server/username to java:comp/env/server/username for this webapp -->
</Call>

还有很多其他的,但它不起作用。请给我一个工作实例,告诉我如何让它工作。谢谢!

1 个答案:

答案 0 :(得分:1)

好的,所以我设法让这个工作。问题是配置。我正在使用Jetty 9,因此根据官方文档(http://www.eclipse.org/jetty/documentation/current/jndi.html#jndi-quick-setup),在Jetty中使用JNDI之前需要做的唯一事情就是通过{jndistart.d模块添加到--add-to-startd=jndi 1}}。而且,这并不完全正确,因为这将启用JNDI,但不会包含jetty-env.xml内容(Jetty甚至不会触及它)。我一直在阅读有关容器生命周期的内容,并注意到为了使用JNDI,需要在Web应用程序上下文配置类集中包含以下类:

  • org.eclipse.jetty.plus.webapp.EnvConfiguration
  • org.eclipse.jetty.plus.webapp.PlusConfiguration

默认情况下,这是$JETTY_HOME/etc/jetty-plus.xml完成的,plus--add-to-startd=jndi,plus模块的配置文件。因此,为了将这些类添加到Jetty容器生命周期中,并通过此include和parse jetty-env.xml,除了jndi模块之外还需要启用加模块(jndi不依赖于加号)!因此,我通过调用{{1}}(模块之间没有空格)来改变我的start.d配置,一切都像魅力一样开始工作。