zoukankan      html  css  js  c++  java
  • SAP Hybris(Commerce)安装recipe包含的三个任务,setup, initialize和start

    (1) Setup = Invoked by default if no task is specified with install command. It installs recipe & copies files.
    (2) Initialize = Initializes the recipes application.
    (3) Start = Start the application.

    https://www.novusedu.com/wp-content/uploads/2017/12/4-Hybris-Install.pdf

    在recipe文件夹里看到的build.gradle内容里包含的setup任务:

    使用的两个plugin:

    • installer-platform-plugin
    • installer-addon-plugin

    https://stackoverflow.com/questions/32352816/what-the-difference-in-applying-gradle-plugin#:~:text=The plugins block is the newer method of,method of adding a plugin to your build.

    两种声明plugin使用的方式:

    apply plugin: 'someplugin1'
    apply plugin: 'maven'
    
    and other one:
    plugins {
       id 'org.hidetake.ssh' version '1.1.2'
    }
    

    The plugins block is the newer method of applying plugins, and they must be available in the Gradle plugin repository. The apply approach is the older, yet more flexible method of adding a plugin to your build.
    The new plugins method does not work in multi-project configurations (subprojects, allprojects), but will work on the build configuration for each child project.

    区别在于后者的语法要求声明的plugin必须在gradle plugin repository里可用:

    Keep in mind, that applying a plugin using the plugins DSL (plugins {...}) does not work for your private plugins or company plugins which are not published to the official Gradle plugin repo. That's why I hope the old approach will at least survive until the new one does support searching in private repositories.

    plugin的定义

    Gradle at its core intentionally provides very little for real world automation. All of the useful features, like the ability to compile Java code, are added by plugins. Plugins add new tasks (e.g. JavaCompile), domain objects (e.g. SourceSet), conventions (e.g. Java source is located at src/main/java) as well as extending core objects and objects from other plugins.

    给一个Gradle项目应用plugin,可以扩展该project的功能:

    (1) Extend the Gradle model (e.g. add new DSL elements that can be configured)
    (2) Configure the project according to conventions (e.g. add new tasks or configure sensible defaults)
    (3) Apply specific configuration (e.g. add organizational repositories or enforce standards)

    plugin的类型

    There are two general types of plugins in Gradle, binary plugins and script plugins - 分为二进制插件和脚本插件两类。

    Binary plugins are written either programmatically by implementing Plugin interface or declaratively using one of Gradle’s DSL languages. Binary plugins can reside within a build script, within the project hierarchy or externally in a plugin jar.

    Script plugins are additional build scripts that further configure the build and usually implement a declarative approach to manipulating the build. They are typically used within a build although they can be externalized and accessed from a remote location.

    https://docs.gradle.org/current/userguide/plugins.html

    plugin的解析

    Resolving a plugin means finding the correct version of the jar which contains a given plugin and adding it the script classpath. Once a plugin is resolved, its API can be used in a build script.

    一旦插件解析成功之后,在build script内可以使用其API.

    Script plugins are self-resolving in that they are resolved from the specific file path or URL provided when applying them. - 脚本插件是自动解析的。

    Core binary plugins provided as part of the Gradle distribution are automatically resolved. Gradle发行版里自带的核心二进制插件自动被解析。

    再回过头来看Hybris recipe文件夹下的build.gradle的三个任务:

    setup任务使用了插件installer-platform-plugin的setup方法:

    插件installer-platform-plugin的实现位于installer文件夹的libs文件夹下面:

    setup实现的源代码:

        void setup() {
            try {
                beforeSetup.each { it() }
                copyDriverJarIfNeeded()
                storeLocalProperties()
                storeLocalExtensions()
                setupDone = true
                log '>>>>>>>>>> Setting up platform properties/extensions ...... DONE'
            } finally {
                afterSetup.each { it() }
            }
        }
    

    关于recipe的更多说明,可以查看文件夹下的readme.txt:

    执行完setup之后,bin文件夹的父文件夹内,就会出现很多平级的文件夹:config, data, log, roles和temp.

    其中data文件夹存放的是数据库相关的内容:

    config文件夹:It has all config files. Instead modifying files in platform folder, modify them in the config folder (localextensions.xml / local.properties). If you are sure what you doing, then you can also do in platform folder.

    为什么Hybris第一次启动前需要先build?

    (1) Hybris is extendable complex solution. During build, all referenced components are integrated. (2) Runtime files and configuration files are created, prepared, and validated.
    (3) Some parts of Hybris are compiled, such as: - Service Layer & Other Hybris Components

    使用ant和maven进行build:

    (1) Compiling Source code into Binary code
    (2) Generates & compiles Model classes based on definitions in "*-items.xml" file
    (3) Running tests
    (4) Deployment to production systems
    (5) It builds every extension listed (or) referenced by "localextensions.xml"

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    20199327 2019-2020-2 《网络攻防实践》第二周作业
    20199327 2019-2020-2《网络攻防实践》第一周作业
    20199327 《网络攻防实践》假期作业
    笔记
    20199327《Linux内核原理与分析》第十二周作业
    20199327《Linux内核原理与分析》第十一周作业
    第二周 测试
    DOS攻击——ICMP报文洪水攻击
    阅读《供应链的可信溯源査询在区块链上的实现》总结 (硕士论文)��
    阅读《基于区块链和用户信用度的访问控制模型 》总结
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13287725.html
Copyright © 2011-2022 走看看