spring - 配置文件的 cargo 复制不起作用

标签 spring maven tomcat7 cargo maven-cargo

所以,我想做的是自动化我的 JMeter 测试过程,为此我使用 Cargo 部署到 Tomcat 容器并在那里运行 JMeter 脚本,并使用基于以下内容的 pom:- http://www.alexecollins.com/content/jmeter-integration-test-template-pom/ 之后,我付出了很多努力,让它开始工作。

但是,现在当然要进行测试,我想使用 testdb 而不是我的实际数据库,为此我需要一个自定义的 context.xml(而不是我的生产 context.xml,一切都可以使用)我正在定义使用 jndi jdbc参数。

因此,我计划拥有一个 testcontext.xml,我在运行 JMeter 测试时使用 cargo 的复制配置文件选项将其复制到容器中 - http://cargo.codehaus.org/Custom+File+Configurations . 但它似乎没有用。而且我已经调试了几个小时,还是想不通。

我正在粘贴我的 test-depolyer 模块的 pom 文件,它具有要在此处部署的所有其他模块的依赖项:-

    <?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
    <groupId>com.parentname</groupId>
    <artifactId>product-services</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.parentname.product-services</groupId>
<artifactId>test-deployer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<dependencies>
    <dependency>
        <groupId>com.parentname.product-services</groupId>
        <artifactId>product1-webapp</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <type>war</type>
    </dependency>

</dependencies>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
                <execution>
                    <id>default</id>
                    <phase>clean</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>

            </executions>

            <configuration>
                <tasks>

                    <delete includeemptydirs="true">
                        <fileset dir="${project.basedir}">
                            <include name="**/jmeter.log" />
                        </fileset>
                    </delete>
                </tasks>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.codehaus.cargo</groupId>
            <artifactId>cargo-maven2-plugin</artifactId>
            <version>1.3.0</version>


            <configuration>

                <container>
                    <type>installed</type>
                    <containerId>tomcat7x</containerId>

                    <zipUrlInstaller>
                        <url>http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.42/bin/apache-tomcat-7.0.42.zip</url>
                    </zipUrlInstaller>
                    </container>

                    <configuration>
                    <properties>
                    <cargo.servlet.port>4321</cargo.servlet.port>
                    <cargo.logging>medium</cargo.logging>
                    </properties>

                    </configuration>


                        <type>installed</type>
                        <deployables>


                            <deployable>
                                <groupId>com.parentname.product-services</groupId>
                                <artifactId>product1-webapp</artifactId>
                                <type>war</type>
                                <properties>  
                                <context>product1-webapp</context>
                                </properties>
                            </deployable>

                        </deployables>

    <configfiles>
     <configfile>

     <file>${project.basedir}/src/test/resources/context.xml</file>
     <todir>conf/Catalina/localhost/</todir>
     <tofile>context.xml</tofile>
   </configfile>
</configfiles>

                    </configuration>

                          <executions>



                          <execution>
                                <id>start-container</id>              
                                              <phase>pre-integration-test</phase>
                    <goals>

                        <goal>start</goal>
                        <goal>deploy</goal>
                    </goals>
                </execution>
                <execution>
                    <id>stop-container</id>
                    <phase>post-integration-test</phase>
                    <goals>
                        <goal>stop</goal>
                    </goals>
                </execution>
            </executions>


        </plugin>
        <plugin> 
            <groupId>com.lazerycode.jmeter</groupId> 
            <artifactId>jmeter-maven-plugin</artifactId> 
            <version>1.4</version> 
            <executions> 
                <execution> 
                    <id>jmeter-tests</id> 
                    <phase>integration-test</phase> 
                    <goals> 
                        <goal>jmeter</goal> 
                    </goals> 
                </execution> 
            </executions> 
            <dependencies>
                <dependency>
                    <groupId>postgresql</groupId>
                    <artifactId>postgresql</artifactId>
                    <version>9.1-901-1.jdbc4</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

最佳答案

对我来说,解决方案是不动<configfiles><container><configuration> 下正如@Praveen 所说,但将其移动到 <configuration><configuration> 下如以下代码片段所示:

             <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.cargo</groupId>
                        <artifactId>cargo-maven2-plugin</artifactId>
                        <configuration>
                                <configuration>
                                    <configfiles>
                                        <configfile>
                                            <file>${basedir}/conf/my-context.xml</file>
                                            <todir>conf/</todir>
                                            <tofile>context.xml</tofile>
                                            <configfile>true</configfile>
                                            <overwrite>true</overwrite>
                                        </configfile>
                                    </configfiles>
                                </configuration>
                        </configuration>
                    </plugin>
                </plugins>
            </build>

关于spring - 配置文件的 cargo 复制不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19034685/

相关文章:

java - 如何在 tomcat 7 上的 java.library.path 中定义多个路径

java - 如何为 tomcat webserver 连接启用 TLS1.2 我们使用的是 tomcat 7.0.82

java - Tomcat 7 : Deploy a war file inside sub directory of webapp

java - Spring Data MongoDB - 在哪里以编程方式为 Mongo 集合创建索引?

java - Spring Batch 限制跨多个服务器的单个作业实例

java - java maven 项目中的 stanford NLP API 错误

java - 是否可以隐藏依赖项?

maven - Gradle错误:找不到org.apache.httpcomponents:httpclient-android:4.3.5.1

java - 交易和发送电子邮件

spring - 在 Grails 中动态设置消息 i18n