简体   繁体   English

XL部署规范-此安全规范有什么作用?

[英]XL-deploy specification - what does this security spec do?

Using Maven, XL-deploy and Deployit, I want to focus extra on security on the intranet. 我想使用Maven,XL-deploy和Deployit,将更多的精力放在Intranet的安全性上。

In examples I see the following maven, xl-deploy scripts. 在示例中,我看到以下Maven xl-deploy脚本。 I have marked it with **** start ... till ... **** end. 我已将其标记为****开始...直到... ****结束。

What does it accomplish? 它完成什么工作? Security for intranet and/or internet? Intranet和/或Internet的安全性? I have been scanning the documentation for a while. 我已经扫描文档一段时间了。

<build>
  <plugins>
    <plugin>
      <groupId>com.xebialabs.xldeploy</groupId>
      <artifactId>xldeploy-maven-plugin</artifactId>
      <version>5.1.0</version>
      <extensions>true</extensions>
        <executions>
          ...
        </executions>
        <configuration>
          <username>user-xyz</username>
          <password>password-xyz</password>
          <serverAddress>server-address</serverAddress>
          <environmentId>Environments/app-1</environmentId>                      
          <deployables>
           ************ start 
            <deployable>
              <name>AD-role1</name>
              <type>AD.AddRol</type>
              <rol>role1,role2</rol>
           </deployable>
           ************ end 

Do you also have a document reference? 您是否还有文件参考?

The XML code here instructs Maven to build a Deployment Archive for XL Deploy. 此处的XML代码指示Maven为XL Deploy构建一个Deployment Archive。 The marked code is one element of the package, a deployable object of type AD.AddRol, to be deployed, I presume, to an AD server to create a role named AD-role-1, or perhaps roles named role1 and role2. 标记的代码是程序包的一个元素,即AD.AddRol类型的可部署对象,我想将其部署到AD服务器上,以创建名为AD-role-1的角色,或者可能名为Role1和Role2的角色。 This appears to be a custom extension to the XL Deploy product, so the deployment details must be inferred. 这似乎是XL Deploy产品的自定义扩展,因此必须推断出部署详细信息。 See https://docs.xebialabs.com/xldeploy-maven-plugin/6.0.x/ for the plugin documentation. 有关插件文档,请参阅https://docs.xebialabs.com/xldeploy-maven-plugin/6.0.x/ See https://docs.xebialabs.com/xl-deploy/ for general information about XL Deploy's model-based deployment type system. 有关XL Deploy基于模型的部署类型系统的一般信息,请参见https://docs.xebialabs.com/xl-deploy/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM