我正在尝试使用JNDI,tomcat,Maven等在远程服务器(而不是数据库服务器)上建立连接池。 详细说明,我有两个maven项目1)Web应用程序2)非maven项目中的Java Application,并尝试从Web应用程序访问Java Application的方法。这是两个项目的POM:
POM for Java Application
<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文件中添加了依赖项。编译这两个项目时,我没有遇到任何错误。
等待你的回答。