EclipseWtpComponent

启用 Eclipse 插件的 WTP 组件详细信息的微调

使用所有可能属性的混合用法的示例。 请记住,通常您不必直接配置它们,因为 Gradle 会免费为您配置!

plugins {
    id 'war' // or 'ear' or 'java'
    id 'eclipse-wtp'
}

configurations {
  someInterestingConfiguration
  anotherConfiguration
}

eclipse {

  //if you want parts of paths in resulting file(s) to be replaced by variables (files):
  pathVariables 'GRADLE_HOME': file('/best/software/gradle'), 'TOMCAT_HOME': file('../tomcat')

  wtp {
    component {
      //you can configure the context path:
      contextPath = 'someContextPath'

      //you can configure the deployName:
      deployName = 'killerApp'

      //you can alter the wb-resource elements.
      //non-existing source dirs won't be added to the component file.
      sourceDirs += file('someExtraFolder')

      // dependencies to mark as deployable with lib folder deploy path
      libConfigurations += [ configurations.someInterestingConfiguration ]

      // dependencies to mark as deployable with root folder deploy path
      rootConfigurations += [ configurations.someInterestingConfiguration ]

      // dependencies to exclude from wtp deployment
      minusConfigurations << configurations.anotherConfiguration

      //you can add a wb-resource elements; mandatory keys: 'sourcePath', 'deployPath':
      //if sourcePath points to non-existing folder it will *not* be added.
      resource sourcePath: 'extra/resource', deployPath: 'deployment/resource'

      //you can add a wb-property elements; mandatory keys: 'name', 'value':
      property name: 'moodOfTheDay', value: ':-D'
    }
  }
}

为了解决极端情况,用户可以对生成的 XML 文件执行高级配置。 也可以通过 beforeMerged 和 whenMerged 闭包来影响 eclipse 插件合并现有配置的方式。

beforeMerged 和 whenMerged 闭包接收 WtpComponent 对象

高级配置示例

plugins {
    id 'war'
    id 'eclipse-wtp'
}

eclipse {

  wtp {
    component {
      file {
        //if you want to mess with the resulting XML in whatever way you fancy
        withXml {
          def node = it.asNode()
          node.appendNode('xml', 'is what I love')
        }

        //closure executed after wtp component file content is loaded from existing file
        //but before gradle build information is merged
        beforeMerged { wtpComponent ->
          //tinker with WtpComponent here
        }

        //closure executed after wtp component file content is loaded from existing file
        //and after gradle build information is merged
        whenMerged { wtpComponent ->
          //you can tinker with the WtpComponent here
        }
      }
    }
  }
}

属性

属性描述
classesDeployPath

类的部署路径。

contextPath

Web 应用程序的上下文路径

deployName

要使用的部署名称。

file

参见 EclipseWtpComponent.file(org.gradle.api.Action)

libConfigurations

配置,其文件将被标记为以 EclipseWtpComponent.getLibDeployPath() 的部署路径部署。

libDeployPath

库的部署路径。

minusConfigurations

配置,其文件将从 wtp 部署中排除。

properties

附加的 property 元素。

resources

附加的 wb-resource 元素。

rootConfigurations

配置,其文件将被标记为以 '/' 的部署路径部署。

sourceDirs

要转换为 wb-resource 元素的源目录。

方法

方法描述
file(action)

启用高级配置,例如修改输出 XML 或影响现有 wtp 组件文件内容与 gradle 构建信息合并的方式。

property(args)

添加一个属性。

resource(args)

添加一个 wb-resource。

脚本块

描述
file

启用高级配置,例如修改输出 XML 或影响现有 wtp 组件文件内容与 gradle 构建信息合并的方式

属性详情

String classesDeployPath

类的部署路径。

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
/WEB-INF/classes
使用 eclipseear 插件的默认值
/

String contextPath

Web 应用程序的上下文路径

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
project.war.baseName

String deployName

要使用的部署名称。

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
eclipse.project.name
使用 eclipseear 插件的默认值
eclipse.project.name

Set<Configuration> libConfigurations

配置,其文件将被标记为以 EclipseWtpComponent.getLibDeployPath() 的部署路径部署。

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
[project.configurations.runtimeClasspath]
使用 eclipseear 插件的默认值
[project.configurations.earlib]

String libDeployPath

库的部署路径。

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
/WEB-INF/lib
使用 eclipseear 插件的默认值
/lib

Set<Configuration> minusConfigurations

配置,其文件将从 wtp 部署中排除。

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
[project.configurations.providedRuntime]
使用 eclipseear 插件的默认值
[]

List<WbProperty> properties

附加的 property 元素。

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
[]
使用 eclipseear 插件的默认值
[]

List<WbResource> resources

附加的 wb-resource 元素。

有关示例,请参阅 EclipseWtp 的文档

只有链接到现有目录的资源 (WbResource.getSourcePath()) 将被添加到 wtp 组件文件。 原因是当项目导入到 Eclipse 中时,不存在的资源目录声明会导致错误。

使用 eclipsewar 插件的默认值
[deployPath: '/', sourcePath: project.webAppDirName]
使用 eclipseear 插件的默认值
[]

Set<Configuration> rootConfigurations

配置,其文件将被标记为以 '/' 的部署路径部署。

有关示例,请参阅 EclipseWtp 的文档

使用 eclipsewar 插件的默认值
[]
使用 eclipseear 插件的默认值
[project.configurations.deploy]]

Set<File> sourceDirs

要转换为 wb-resource 元素的源目录。

有关示例,请参阅 EclipseWtp 的文档

只有存在的源目录才会被添加到 wtp 组件文件。 当项目导入到 Eclipse 中时,不存在的资源目录声明会导致错误。

使用 eclipsewar 插件的默认值
来自 project.sourceSets.main.allSource 的源目录
使用 eclipseear 插件的默认值
相同,除非未应用 java 插件,否则:[project.appDirName]

方法详情

void file(Action<? super XmlFileContentMerger> action)

启用高级配置,例如修改输出 XML 或影响现有 wtp 组件文件内容与 gradle 构建信息合并的方式。

例如,请参阅 EclipseWtpComponent 的文档

void property(Map<String, String> args)

添加一个属性。

有关示例,请参阅 EclipseWtp 的文档

void resource(Map<String, String> args)

添加一个 wb-resource。

有关示例,请参阅 EclipseWtp 的文档

脚本块详情

file { }

启用高级配置,例如修改输出 XML 或影响现有 wtp 组件文件内容与 gradle 构建信息合并的方式

传递给 whenMerged{} 和 beforeMerged{} 闭包的对象类型为 WtpComponent

例如,请参阅 EclipseWtpComponent 的文档

委托给
来自 fileXmlFileContentMerger