嵌入式glassfish容器的JUnit测试错误

时间:2014-08-15 18:38:33

标签: java jdbc junit glassfish

我必须承认这个JUnit测试一直是个噩梦,直到​​现在,我已经投入了一些时间,在互联网上搜索,但我尝试的一切都没有用。 我遇到的错误如下:

SCHWERWIEGEND: Exception while invoking class org.glassfish.persistence.jpa.JPADeployer prepare method
java.lang.RuntimeException: Invalid resource : jdbc/sample__pm

jdbc / sample__pm不存在,但persistance.xml中的jdbc / sample确实存在。 正如我所说,我已经搜索过这个问题,但我找不到解决问题的方法。

我猜问题是pom.xml,但不知道如何修复它。

感谢您的帮助

pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.maggioni</groupId>
<artifactId>SampleApp</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.10</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.eclipse.persistence</groupId>
        <artifactId>eclipselink</artifactId>
        <version>2.5.1</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>org.eclipse.persistence</groupId>
        <artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
        <version>2.5.1</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>javax</groupId>
        <artifactId>javaee-api</artifactId>
        <version>7.0</version>
        <scope>provided</scope>
    </dependency>

    <dependency>
        <groupId>org.glassfish.main.extras</groupId>
        <artifactId>glassfish-embedded-all</artifactId>
        <version>4.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.derby</groupId>
        <artifactId>derbyclient</artifactId>
        <version>10.10.2.0</version>    
    </dependency>

</dependencies>
<build>
    <finalName>SampleApp</finalName>
</build>
<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <failOnMissingWebXml>false</failOnMissingWebXml>
</properties>

也可以找到来源here

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,在失去了很多时间之后,我做对了。我现在可以使用我的连接池运行我的测试。 这个问题是由Netbeans中的一系列小型maven代码生成错误引起的。

贝娄是一系列步骤供你检查

1 - 您的pom.xml必须具有为glassfish-embedded-static-shell配置的路径,插件和依赖项,如下所示:

  • 在pom顶部的属性中添加glassfish instalation文件夹的路径(这是我的):

<properties> <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <glassfish.embedded-static-shell.jar>C:/Program Files/glassfish-4.0/glassfish/lib/embedded/glassfish-embedded-static-shell.jar</glassfish.embedded-static-shell.jar> </properties>

  • 添加/检查下面的插件定义(在您的情况下替换每个maven的mysql):         `

    <build>
    ...
      <plugins>
        ...
         <plugin>
            <groupId>org.glassfish.embedded</groupId>
            <artifactId>maven-embedded-glassfish-plugin</artifactId>
            <version>4.0</version>
    
            <dependencies>
                <dependency>
                    <groupId>org.glassfish.main.common</groupId>
                    <artifactId>simple-glassfish-api</artifactId>
                    <version>4.1</version>
                </dependency>
                <dependency>
                    <groupId>org.glassfish.main.extras</groupId>
                    <artifactId>glassfish-embedded-static-shell</artifactId>
                    <version>4.1</version>
                    <scope>system</scope>
                    <systemPath>${glassfish.embedded-static-shell.jar}</systemPath>
                </dependency>
                <dependency>
                    <groupId>mysql</groupId>
                    <artifactId>mysql-connector-java</artifactId>
                    <version>5.1.28</version>
                </dependency>
            </dependencies>
            <configuration>
                <app>target/${project.artifactId}-${project.version}</app>
                <port>8282</port>
                <contextRoot>${project.artifactId}</contextRoot>
                <foo>bar</foo>
            </configuration>
    
        </plugin>
      ...
      </plugins>
     ...
    </build>
    

`

2 - 你的glassfish资源......这很愚蠢,但你的jdbc资源的jndi-name必须有前缀java:app / so,把它添加为示例下方(只是资源,连接池可以有任何名称):   *只记得glassfish中jdbc-resource的名称不会有前缀java:app,例如:我在glassfish中的jdbc-resource只是ShrewdPCPool

3 - 第三和最愚蠢的,当部署嵌入式glassfish时,Netbeans的自动生成脚本不会在类路径中包含/ src / main / resources / setup,因此,简单的解决方案是制作副本你的glassfish-resources.xml para / src / main / resources / META-INF /或如果你有足够的耐心改变脚本。

在运行测试之前,不要忘记清理,并在使用依赖项构建之后!