0

我正在尝试使用 JNDI、tomcat、Maven 等在远程服务器(不是数据库服务器)上进行连接池。具体来说,我有两个 maven 项目 1)Web 应用程序 2)非 maven 项目中的 Java 应用程序并尝试访问这些方法来自 Web 应用程序的 Java 应用程序。这是两个项目的POM:

Java 应用程序的 POM

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>commons-pool</groupId>
        <artifactId>commons-pool</artifactId>
        <version>1.6</version>
    </dependency>
    <dependency>
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId>
    <version>1.2.13</version>
</dependency>  
  </dependencies>

WebApp 的 POM

<dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.0.1</version>
    <scope>provided</scope>
</dependency>

    <dependency>
        <groupId>de.hello.simpleJavaApp</groupId>
        <artifactId>SimpleJavaApp</artifactId>
        <version>1.0-SNAPSHOT</version>
        <!-- <scope>compile</scope> -->
    </dependency>
        <dependency>
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId>
    <version>1.2.13</version>
</dependency>          
  </dependencies>
  <build>
    <finalName>CPWebApp</finalName>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-war-plugin</artifactId>
          <version>2.1-alpha-2</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>2.3.2</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>

Web App的web.xml:

 <resource-env-ref>
    <description>
        Connection pooling on HSM.
    </description>
    <resource-env-ref-name>bean/CXIResourceLocator</resource-env-ref-name>
    <resource-env-ref-type>
        de.hello.CPWebApp.CXIBean
    </resource-env-ref-type>
</resource-env-ref>

现在的问题是我无法访问 Java Application(java.lang.ClassNotFoundException) 的方法,因为我在 Web 应用程序的 POM 文件中添加了依赖项。在编译这两个项目时我没有收到任何错误。

等待你的答复。

4

0 回答 0