0

我正在尝试开始使用 IDEA IntelliJ Jetty 插件。在我们的应用程序中,我们使用 JNDI 数据源来访问实际的数据库。

因此,对于开发,我们生成一个jetty-env.xml并在开发部署期间将其包含在WEB-INF目录中:

<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
<Configure class="org.mortbay.jetty.webapp.WebAppContext">
  <!-- Add an JNDI resource -->
  <New class="org.mortbay.jetty.plus.naming.Resource">
        <Arg>datasource_pbv</Arg>
        <Arg>
            <New class="org.apache.commons.dbcp.BasicDataSource">
                <Set name="DriverClassName">oracle.jdbc.driver.OracleDriver</Set>
                <Set name="Url">jdbc:oracle:thin:@dbserver:1521:DATABASE</Set>
                <Set name="Username">user</Set>
                <Set name="Password">pass</Set>
            </New>
        </Arg>
    </New>
</Configure>

我以这种方式在jetty.xml中重新配置了 Jetty WebAppDeployer,因此它使用org.mortbay.jetty.plus.webapp.EnvConfiguration读取和处理jetty-env.xml

<Configure id="Server" class="org.mortbay.jetty.Server">  
    ...
    <Array id="plusConfig" type="java.lang.String">
      <Item>org.mortbay.jetty.webapp.WebInfConfiguration</Item>
      <Item>org.mortbay.jetty.plus.webapp.EnvConfiguration</Item>
      <Item>org.mortbay.jetty.plus.webapp.Configuration</Item>
      <Item>org.mortbay.jetty.webapp.JettyWebXmlConfiguration</Item>
      <Item>org.mortbay.jetty.webapp.TagLibConfiguration</Item>
    </Array>
    ...
    <Call name="addLifeCycle">
      <Arg>
        <New class="org.mortbay.jetty.deployer.WebAppDeployer">
            ...              
            <Set name="configurationClasses"><Ref id="plusConfig"/></Set>
        </New>
      </Arg>
    </Call>
    ...
</Configure>    

不幸的是,这不适用于 IDEA Jetty 插件。IDEA Jetty 插件生成一个context-config.xml和一个后续的war-exploded.xml,它不添加 EnvConfiguration。因此,使用 Jetty IDEA 插件进行部署时会忽略 jetty-env.xml。

在使用 IDEA Jetty 插件进行部署时,我如何才能使这项工作或提供自定义 JNDI 条目的其他方法?

4

1 回答 1

0

我还没有检查过自己,但是由于 IDEA Jetty 集成依赖于ContextDeployer,因此以下内容应该可以工作(如果添加到jetty.xml):

<Call name="addLifeCycle">
  <Arg>
    <New class="org.mortbay.jetty.deployer.ContextDeployer">
        ...              
        <Set name="configurationClasses"><Ref id="plusConfig"/></Set>
    </New>
  </Arg>
</Call>
于 2012-11-21T08:32:39.947 回答