1

我编写了一个自定义 maven 插件,它扩展了axis2 wsdl2java 插件,其概念是创建自定义生命周期,在执行我的自定义插件目标之前执行wsdl2java 插件。

调用自定义生命周期的代码如下。

生命周期.xml

 <lifecycles>     
    <lifecycle> 
    <id>custom-lifecycle</id> 
    <phases> 
     <phase> 
       <id>invoke</id> 
         <executions> 
              <execution> 
                <goals> 
                  <goal> 
                    org.apache.axis2:axis2-wsdl2code-maven-plugin:wsdl2code 
                  </goal> 
                </goals> 
                <configuration> 
                  <packageName>com.foo.myservice</packageName>
                   <wsdlFile>src/main/wsdl/myservice.wsdl</wsdlFile>
                 </configuration> 
              </execution> 
            </executions> 
          </phase> 
        </phases> 
      </lifecycle> 
    </lifecycles> 

我的魔力是

/**
 * 
 * @goal process
 * @execute lifecycle="custom-lifecycle" phase="invoke"
 */
public class SampleMojo extends AbstractMojo
{
  public void execute()
    throws MojoExecutionException
  {
    //Code
  }
}

问题:我想从我的自定义插件中传递 wsdl2java 插件的参数(即包名、wsdlFile)。

是否可以将参数从我的 Mojo 发送到自定义生命周期?如果有怎么办?

提前致谢

阿迪亚

4

1 回答 1

2

是的,这确实是可能的,并且通过使用@param注释与xml 参数同名的静态字段来实现,如下所示:

/**
 * Package name - this is injected from the 'packageName' xml element
 * @parameter
 */
private static String packageName;

/**
 * WSDL File Location, populated from the 'wsdlFile' xml element
 * @parameter
 */
private static String wsdlFile;

public void execute() throws MojoExecutionException, MojoFailureException {
    //do stuff here with packageName and wsdlFile.
}

PS:Checkstyle 的 @goal 和 @parameter 存在问题 - 我必须使用 //CSOFF: TreeWalker 关闭 checkstyle 才能完全禁用此类。

于 2011-12-02T21:17:42.923 回答