使用exec-maven-plugin运行Spring应用程序

时间:2020-09-29 07:23:18

标签: java maven exec-maven-plugin

我需要使用exec-maven-plugin运行基于Spring的Web服务。使用exec:java和以下配置,整个设置运行良好:

<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
    <goal>java</goal>
    <mainClass>com.markit.valuations.common.spring.SpringMain</mainClass>
    <arguments>
        <argument>applicationContext-valuations-webapp.xml</argument>
    </arguments>
    <systemProperties combine.children="append">
        <systemProperty>
            ..........
            ..........
        </systemProperty>
    </systemProperties>
</configuration>

现在,我想进行一些性能分析,因此需要将过程连接到Profiler。因此,我想使用exec:exec运行Spring应用程序。我对配置进行了以下更改,但是由于找不到applicationContext-valuations-webapp.xml,因此出现错误。有人可以建议如何解决以下配置

<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
    <goal>exec</goal>
    <executable>java</executable>
    <mainClass>com.markit.valuations.common.spring.SpringMain</mainClass>
    <arguments>
        <argument>applicationContext-valuations-webapp.xml</argument>
    </arguments>
    <systemProperties combine.children="append">
        <systemProperty>
            .....
            .....
        </systemProperty>
    </systemProperties>
</configuration>

0 个答案:

没有答案