Jetty JNDI配置与Spring查找

n9vozmp4  于 12个月前  发布在  Spring
关注(0)|答案(1)|浏览(103)

我在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.NameNotFoundException时,创建serverUsernameserverPassword.我已经尝试了许多修改,但似乎没有工作.我已经尝试:

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


和许多其他的,但它就是不工作。请给予我一个工作的例子,我如何才能让它工作。谢谢!

qpgpyjmq

qpgpyjmq1#

好的,所以我已经设法让这个工作。问题是配置。我使用的是Jetty 9,所以根据官方文档(网址://eclipse.dev/jetty/documentation/jetty-9/index.html#jndi-quick-setup)在Jetty中使用JNDI之前,唯一需要做的事情是通过执行--add-to-startd=jndijndi模块添加到start.d。但不包括jetty-env.xml内容(Jetty甚至不要碰它)我一直在阅读有关容器生命周期的内容,并注意到为了使用JNDI,需要在Web应用程序上下文中包含以下类配置类集:

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

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

相关问题