Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/maven/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jakarta ee struts2 junit 2.3.12插件-无法在struts2 junit4中编写成功的测试_Jakarta Ee_Maven_Struts2_Junit4_Struts2 Junit Plugin - Fatal编程技术网

Jakarta ee struts2 junit 2.3.12插件-无法在struts2 junit4中编写成功的测试

Jakarta ee struts2 junit 2.3.12插件-无法在struts2 junit4中编写成功的测试,jakarta-ee,maven,struts2,junit4,struts2-junit-plugin,Jakarta Ee,Maven,Struts2,Junit4,Struts2 Junit Plugin,我正在使用struts2 junit 2.3.12插件 如果直接运行测试,则会得到: java.lang.NoClassDefFoundError:javax/servlet/ServletContext 所以我包括 <dependency> <groupId>javax</groupId> <artifactId>javaee-web-api</artifactId>

我正在使用struts2 junit 2.3.12插件

  • 如果直接运行测试,则会得到:
  • java.lang.NoClassDefFoundError:javax/servlet/ServletContext

    所以我包括

    <dependency>
                <groupId>javax</groupId>
                <artifactId>javaee-web-api</artifactId>
                <version>6.0</version>
                <scope>provided</scope>
            </dependency>
    
    因此,我删除了上述依赖项并添加:

     <dependency>
                <groupId>org.jboss.spec</groupId>
                <artifactId>jboss-javaee-6.0</artifactId>
                <version>1.0.0.Final</version>
                <type>pom</type>
                <scope>provided</scope>
            </dependency>
    
    以下是我的测试:

    public class TestAction extends StrutsTestCase {
    
        @Test
        public void testRegister() throws Exception {
            ActionProxy proxy = getActionProxy("/gotoregister");
            assertNotNull(proxy);
    
            proxy = getActionProxy("/registeraction");
            UserAction action = (UserAction) proxy.getAction();
            assertNotNull(action);
            request.setParameter("usernameexists", "true");
            request.setParameter("emailexists", "false");
            request.setParameter("basicinfo.firstname", "fname");
            request.setParameter("basicinfo.lastname", "lname");
            request.setParameter("user.username", "test");
            request.setParameter("user.email", "nitin.cool4urchat@gmail.com");
            request.setParameter("user.passwd", "nn");
            request.setParameter("repasswd", "nn");
            request.setParameter("gender", "nn");
            request.setParameter("basicinfo.country", "India");
            String result = action.execute();
            assertEquals("input", result);
            System.out.println(action.getActionErrors());
            System.out.println(action.getActionMessages());
        }
    }
    
    请帮我写一个成功的测试

    [编辑]-我想我应该添加我的完整POM,下面是POM的最大部分:

    <repositories>
            <repository>
                <id>java.net2</id>
                <name>Repository hosting the jee6 artifacts</name>
                <url>http://download.java.net/maven/2</url>
            </repository>
            <repository>
                <id>JBoss repository</id>
                <url>http://repository.jboss.org/nexus/content/groups/public/</url>
            </repository>
        </repositories>
    
        <dependencies>
            <dependency>
                <groupId>net.sourceforge.htmlunit</groupId>
                <artifactId>htmlunit</artifactId>
                <version>2.12</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-lang3</artifactId>
                <version>3.0</version>
                <type>jar</type>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>javax.mail</groupId>
                <artifactId>mail</artifactId>
                <version>1.4.5</version>
            </dependency>
            <dependency>
                <groupId>commons-lang</groupId>
                <artifactId>commons-lang</artifactId>
                <version>2.4</version>
            </dependency>
            <dependency>
                <groupId>javax.persistence</groupId>
                <artifactId>persistence-api</artifactId>
                <version>1.0</version>
                <type>jar</type>
                <scope>compile</scope>
            </dependency>
    
    <!--        <dependency>
                <groupId>c3p0</groupId>
                <artifactId>c3p0</artifactId>
                <version>0.9.1.2</version>
                <type>jar</type>
                <scope>compile</scope>
            </dependency>-->
    <!--        <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-annotations</artifactId>
                <version>3.5.6-Final</version>
            </dependency>-->
    <!--        <dependency>
                <groupId>org.apache.poi</groupId>
                <artifactId>poi-ooxml</artifactId>
                <version>3.8-beta4</version>
            </dependency>-->
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.6</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-entitymanager</artifactId>
                <version>${hibernate.version}</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-c3p0</artifactId>
                <version>${hibernate.version}</version>
            </dependency>
    <!--        <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
                <version>1.6.1</version>
            </dependency>-->
    
    <!--        <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-simple</artifactId>
                <version>1.6.1</version>
            </dependency>-->
    <!--        <dependency>
                <groupId>org.apache.tiles</groupId>
                <artifactId>tiles-servlet</artifactId>
                <version>2.1.4</version>
            </dependency>
            <dependency>
                <groupId>org.apache.tiles</groupId>
                <artifactId>tiles-jsp</artifactId>
                <version>2.1.4</version>
            </dependency>-->
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-core</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-json-plugin</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-tiles-plugin</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-junit-plugin</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>joda-time</groupId>
                <artifactId>joda-time</artifactId>
                <version>2.1</version>
            </dependency>
    <!--        <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate</artifactId>
                <version>3.2.5.ga</version>
            </dependency>-->
    <!--        <dependency>
                <groupId>javax.sql</groupId>
                <artifactId>jdbc-stdext</artifactId>
                <version>2.0</version>
            </dependency>
            <dependency>
                <groupId>javax.transaction</groupId>
                <artifactId>jta</artifactId>
                <version>1.0.1B</version>
            </dependency>-->
    
    <!--        <dependency>
                <groupId>javax</groupId>
                <artifactId>javaee-web-api</artifactId>
                <version>6.0</version>
                <scope>provided</scope>
            </dependency>-->
            <!--
            <dependency>
                <groupId>javax.validation</groupId>
                <artifactId>validation-api</artifactId>
                <version>1.0.0.GA</version>
                <scope>test</scope>
            </dependency>-->
            <dependency>
                <groupId>org.jboss.spec</groupId>
                <artifactId>jboss-javaee-6.0</artifactId>
                <version>1.0.0.Final</version>
                <type>pom</type>
                <scope>provided</scope>
            </dependency>
    
    <!--        <dependency>
                <groupId>junit</groupId>
                <artifactId>junit-dep</artifactId>
                <version>4.1</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.jmock</groupId>
                <artifactId>jmock-junit4</artifactId>
                <version>2.6.0</version>
                <scope>test</scope>
            </dependency>-->
    <!--        <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.11</version>
                <version>3.8.2</version>
                <scope>test</scope>
            </dependency>-->
        </dependencies>
        <build>
            <plugins>
    <!--            <plugin>
                    <groupId>org.mortbay.jetty</groupId>
                    <artifactId>maven-jetty-plugin</artifactId>
                    <version>6.1.14</version>
                    <configuration>
                        <scanIntervalSeconds>5</scanIntervalSeconds>
                        <webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml>
                        <connectors>
                            <connector implementation="org.eclipse.jetty.server.bio.SocketConnector">
                                <port>8080</port>
                            </connector>
                        </connectors>
                    </configuration>
                </plugin>-->
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.0.2</version>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                        <encoding>${project.build.sourceEncoding}</encoding>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>2.1-beta-1</version>
                    <configuration>
                        <failOnMissingWebXml>false</failOnMissingWebXml>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.2</version>
                    <configuration>
                        <encoding>${project.build.sourceEncoding}</encoding>
                    </configuration>
                </plugin>
            </plugins>
            <finalName>GoldenTraderMaven</finalName>
        </build>
        <profiles>
            <profile>
                <id>endorsed</id>
                <activation>
                    <property>
                        <name>sun.boot.class.path</name>
                    </property>
                </activation>
                <build>
                    <plugins>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-compiler-plugin</artifactId>
                            <version>2.0.2</version>
                            <configuration>
                                 javaee6 contains upgrades of APIs contained within the JDK itself.
                                     As such these need to be placed on the bootclasspath, rather than classpath of the
                                     compiler.
                                     If you don't make use of these new updated API, you can delete the profile.
                                     On non-SUN jdk, you will need to create a similar profile for your jdk, with the similar property as sun.boot.class.path in Sun's JDK.
                                <compilerArguments>
                                    <bootclasspath>${settings.localRepository}/javax/javaee-endorsed-api/6.0/javaee-endorsed-api-6.0.jar${path.separator}${sun.boot.class.path}</bootclasspath>
                                </compilerArguments>
                            </configuration>
                            <dependencies>
                                <dependency>
                                    <groupId>javax</groupId>
                                    <artifactId>javaee-endorsed-api</artifactId>
                                    <version>6.0</version>
                                </dependency>
                            </dependencies>
                        </plugin>
                    </plugins>
                </build>
            </profile>
        </profiles>
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server>
            <struts.version>2.3.12</struts.version>
            <hibernate.version>3.6.10.Final</hibernate.version>
        </properties>
    </project>
    
    
    java.net2
    托管jee6工件的存储库
    http://download.java.net/maven/2
    JBoss存储库
    http://repository.jboss.org/nexus/content/groups/public/
    net.sourceforge.htmlunit
    htmlunit
    2.12
    编译
    org.apache.commons
    commons-lang3
    3
    罐子
    编译
    javax.mail
    邮件
    1.4.5
    公地郎
    公地郎
    2.4
    javax.persistence
    持久性api
    1
    罐子
    编译
    mysql
    mysql连接器java
    5.1.6
    org.hibernate
    休眠实体管理器
    ${hibernate.version}
    org.hibernate
    hibernate-c3p0
    ${hibernate.version}
    org.apache.struts
    struts2型芯
    ${struts.version}
    org.apache.struts
    struts2 json插件
    ${struts.version}
    org.apache.struts
    struts2瓷砖插件
    ${struts.version}
    org.apache.struts
    struts2 junit插件
    ${struts.version}
    乔达时间
    乔达时间
    2.1
    org.jboss.spec
    jboss-javaee-6.0
    1.0.0.1决赛
    聚甲醛
    假如
    org.apache.maven.plugins
    maven编译器插件
    2.0.2
    1.6
    1.6
    ${project.build.sourceEncoding}
    org.apache.maven.plugins
    maven战争插件
    2.1-β-1
    假的
    org.apache.maven.plugins
    maven资源插件
    2.2
    ${project.build.sourceEncoding}
    戈登特拉德曼酒店
    认可
    sun.boot.class.path
    org.apache.maven.plugins
    maven编译器插件
    2.0.2
    javaee6包含JDK本身包含的API的升级。
    因此,这些需要放在bootclasspath上,而不是
    编译器。
    如果不使用这些新更新的API,可以删除配置文件。
    在非SUN jdk上,您需要为jdk创建一个类似的概要文件,其属性与SUN的jdk中的SUN.boot.class.path类似。
    ${settings.localRepository}/javax/javaee-approved-api/6.0/javaee-approved-api-6.0.jar${path.separator}${sun.boot.class.path}
    爪哇
    javaee认可的api
    6
    UTF-8
    Tomcat60
    2.3.12
    3.6.10.最终版本
    
    您需要将
    javax.servlet:servlet api
    javax.servlet.jsp:jsp api
    的依赖项添加到项目pom.xml文件中

    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.4</version>
        <type>jar</type>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>javax.servlet.jsp</groupId>
        <artifactId>jsp-api</artifactId>
        <version>2.1</version>
        <type>jar</type>
        <scope>test</scope>
    </dependency>
    
    
    javax.servlet
    servlet api
    2.4
    罐子
    假如
    javax.servlet.jsp
    jsp api
    2.1
    罐子
    测试
    
    尝试使用
    javax.servlet:servlet api
    依赖项。我尝试了,之后得到了
    java.lang.NoClassDefFoundError:javax/servlet/jsp/PageContext
    ,所以我在POM中也包含了jsp api,然后它似乎可以很好地执行测试。非常感谢您的紧急响应。是的,忘记了jsp api。补充我的评论作为回答。如果它对你有帮助,你可以接受它。
    <repositories>
            <repository>
                <id>java.net2</id>
                <name>Repository hosting the jee6 artifacts</name>
                <url>http://download.java.net/maven/2</url>
            </repository>
            <repository>
                <id>JBoss repository</id>
                <url>http://repository.jboss.org/nexus/content/groups/public/</url>
            </repository>
        </repositories>
    
        <dependencies>
            <dependency>
                <groupId>net.sourceforge.htmlunit</groupId>
                <artifactId>htmlunit</artifactId>
                <version>2.12</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-lang3</artifactId>
                <version>3.0</version>
                <type>jar</type>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>javax.mail</groupId>
                <artifactId>mail</artifactId>
                <version>1.4.5</version>
            </dependency>
            <dependency>
                <groupId>commons-lang</groupId>
                <artifactId>commons-lang</artifactId>
                <version>2.4</version>
            </dependency>
            <dependency>
                <groupId>javax.persistence</groupId>
                <artifactId>persistence-api</artifactId>
                <version>1.0</version>
                <type>jar</type>
                <scope>compile</scope>
            </dependency>
    
    <!--        <dependency>
                <groupId>c3p0</groupId>
                <artifactId>c3p0</artifactId>
                <version>0.9.1.2</version>
                <type>jar</type>
                <scope>compile</scope>
            </dependency>-->
    <!--        <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-annotations</artifactId>
                <version>3.5.6-Final</version>
            </dependency>-->
    <!--        <dependency>
                <groupId>org.apache.poi</groupId>
                <artifactId>poi-ooxml</artifactId>
                <version>3.8-beta4</version>
            </dependency>-->
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.6</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-entitymanager</artifactId>
                <version>${hibernate.version}</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-c3p0</artifactId>
                <version>${hibernate.version}</version>
            </dependency>
    <!--        <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
                <version>1.6.1</version>
            </dependency>-->
    
    <!--        <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-simple</artifactId>
                <version>1.6.1</version>
            </dependency>-->
    <!--        <dependency>
                <groupId>org.apache.tiles</groupId>
                <artifactId>tiles-servlet</artifactId>
                <version>2.1.4</version>
            </dependency>
            <dependency>
                <groupId>org.apache.tiles</groupId>
                <artifactId>tiles-jsp</artifactId>
                <version>2.1.4</version>
            </dependency>-->
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-core</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-json-plugin</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-tiles-plugin</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.struts</groupId>
                <artifactId>struts2-junit-plugin</artifactId>
                <version>${struts.version}</version>
            </dependency>
            <dependency>
                <groupId>joda-time</groupId>
                <artifactId>joda-time</artifactId>
                <version>2.1</version>
            </dependency>
    <!--        <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate</artifactId>
                <version>3.2.5.ga</version>
            </dependency>-->
    <!--        <dependency>
                <groupId>javax.sql</groupId>
                <artifactId>jdbc-stdext</artifactId>
                <version>2.0</version>
            </dependency>
            <dependency>
                <groupId>javax.transaction</groupId>
                <artifactId>jta</artifactId>
                <version>1.0.1B</version>
            </dependency>-->
    
    <!--        <dependency>
                <groupId>javax</groupId>
                <artifactId>javaee-web-api</artifactId>
                <version>6.0</version>
                <scope>provided</scope>
            </dependency>-->
            <!--
            <dependency>
                <groupId>javax.validation</groupId>
                <artifactId>validation-api</artifactId>
                <version>1.0.0.GA</version>
                <scope>test</scope>
            </dependency>-->
            <dependency>
                <groupId>org.jboss.spec</groupId>
                <artifactId>jboss-javaee-6.0</artifactId>
                <version>1.0.0.Final</version>
                <type>pom</type>
                <scope>provided</scope>
            </dependency>
    
    <!--        <dependency>
                <groupId>junit</groupId>
                <artifactId>junit-dep</artifactId>
                <version>4.1</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.jmock</groupId>
                <artifactId>jmock-junit4</artifactId>
                <version>2.6.0</version>
                <scope>test</scope>
            </dependency>-->
    <!--        <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.11</version>
                <version>3.8.2</version>
                <scope>test</scope>
            </dependency>-->
        </dependencies>
        <build>
            <plugins>
    <!--            <plugin>
                    <groupId>org.mortbay.jetty</groupId>
                    <artifactId>maven-jetty-plugin</artifactId>
                    <version>6.1.14</version>
                    <configuration>
                        <scanIntervalSeconds>5</scanIntervalSeconds>
                        <webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml>
                        <connectors>
                            <connector implementation="org.eclipse.jetty.server.bio.SocketConnector">
                                <port>8080</port>
                            </connector>
                        </connectors>
                    </configuration>
                </plugin>-->
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.0.2</version>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                        <encoding>${project.build.sourceEncoding}</encoding>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>2.1-beta-1</version>
                    <configuration>
                        <failOnMissingWebXml>false</failOnMissingWebXml>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.2</version>
                    <configuration>
                        <encoding>${project.build.sourceEncoding}</encoding>
                    </configuration>
                </plugin>
            </plugins>
            <finalName>GoldenTraderMaven</finalName>
        </build>
        <profiles>
            <profile>
                <id>endorsed</id>
                <activation>
                    <property>
                        <name>sun.boot.class.path</name>
                    </property>
                </activation>
                <build>
                    <plugins>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-compiler-plugin</artifactId>
                            <version>2.0.2</version>
                            <configuration>
                                 javaee6 contains upgrades of APIs contained within the JDK itself.
                                     As such these need to be placed on the bootclasspath, rather than classpath of the
                                     compiler.
                                     If you don't make use of these new updated API, you can delete the profile.
                                     On non-SUN jdk, you will need to create a similar profile for your jdk, with the similar property as sun.boot.class.path in Sun's JDK.
                                <compilerArguments>
                                    <bootclasspath>${settings.localRepository}/javax/javaee-endorsed-api/6.0/javaee-endorsed-api-6.0.jar${path.separator}${sun.boot.class.path}</bootclasspath>
                                </compilerArguments>
                            </configuration>
                            <dependencies>
                                <dependency>
                                    <groupId>javax</groupId>
                                    <artifactId>javaee-endorsed-api</artifactId>
                                    <version>6.0</version>
                                </dependency>
                            </dependencies>
                        </plugin>
                    </plugins>
                </build>
            </profile>
        </profiles>
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server>
            <struts.version>2.3.12</struts.version>
            <hibernate.version>3.6.10.Final</hibernate.version>
        </properties>
    </project>
    
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.4</version>
        <type>jar</type>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>javax.servlet.jsp</groupId>
        <artifactId>jsp-api</artifactId>
        <version>2.1</version>
        <type>jar</type>
        <scope>test</scope>
    </dependency>