zoukankan      html  css  js  c++  java
  • Hybris服务器启动日志分析

    build文件检测,使用b2c_acc recipit启动服务器:/home/jerrywang/Hybris/installer/recipes/b2c_acc/build.gradle

    The Task.leftShift(Closure) method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use Task.doLast(Action) instead.
    at build_24qda9aair3teyrqc9izdrv89.run(/home/jerrywang/Hybris/installer/recipes/b2c_acc/build.gradle:79)
    :recipes/b2c_acc:start
    Executing: createConfig...
    Buildfile: /home/jerrywang/Hybris/hybris/bin/platform/build.xml

    clipboard1,1

    简单的启动环境检测,比如操作系统,jdk类型,Java编译器类型等等:

    clipboard2,2

    列出对应文件目录的位置:
    [echo] Extension file used: /home/jerrywang/Hybris/hybris/config/localextensions.xml
    [echo] Platform home: /home/jerrywang/Hybris/hybris/bin/platform
    [echo] Lg folder: /home/jerrywang/Hybris/hybris/log
    [echo] Data folder: /home/jerrywang/Hybris/hybris/data
    [echo] Config folder: /home/jerrywang/Hybris/hybris/config
    [echo] Bin folder: /home/jerrywang/Hybris/hybris/bin
    [echo] Temp folder: /home/jerrywang/Hybris/hybris/temp/hybriso
    [echo] Boostrap bin folder: /home/jerrywang/Hybris/hybris/bin/platform/bootstrap/bin
    列出加载的extension和module名称:

    clipboard3,3
    clipboard4,4

    Tenant名称,启动模式,操作系统类型,数据库类型和存储文件,Java版本,Cache,web server类型都打印出来了:

    clipboard5,5

    启动Solr服务器,端口8983:

    clipboard6,6

    等待3分钟,直到Solr成功启动为止,看到Happy searching, 意味着稍后可以使用full text query了。

    clipboard7,7

    接下来是Spring开发程序员熟悉的context refresh操作了:

    clipboard8,8

    [localhost-startStop-2] [HybrisContextFactory] - Refreshing SpringContext (Global context) took: (7.980 s)
    [m[32mINFO [localhost-startStop-2] [HybrisContextFactory] Initializing <> Spring ApplicationContext took: (8.708 s)
    [m[32mINFO [localhost-startStop-2] [HybrisContextFactory] Loading <> spring config from extension (core) located in (core-spring.xml,persistence-spring.xml,core-media-spring.xml,core-profiling-spring.xml,core-jmx-spring.xml,core-filter-spring.xml,servicelayer-spring.xml,user-spring.xml,security-spring.xml,media-spring.xml,i18n-spring.xml,interceptor-spring.xml,event-spring.xml) took: (163.4 ms)
    各种Bean的加载:

    clipboard9,9

    启动indexer cronjob:

    clipboard10,10

    各种Spring post processing操作:

    clipboard11,11

    [32mINFO [localhost-startStop-3] (junit) [MapMergeDirectiveBeanPostProcessor] Post Processing MapMergeDirective [defaultPromotionProductRaoProvidersMapping] on Bean [raoProviders]
    [m[32mINFO [localhost-startStop-3] (junit) [MapMergeDirectiveBeanPostProcessor] Post Processing MapMergeDirective [defaultCouponRuleActionMetadataHandlersMergeDirective] on Bean [ruleActionMetadataHandlers]
    [m[32mINFO [localhost-startStop-3] (junit) [MapMergeDirectiveBeanPostProcessor] Post Processing MapMergeDirective [givenCouponActionStrategiesMappingMergeDirective] on Bean [promotionActionStrategiesMapping]
    [m[32mINFO [localhost-startStop-3] (junit) [ListMergeDirectiveBeanPostProcessor] Post Processing ListMergeDirective [commerceQuoteCartCalculationMethodHookMergeDirective] on Bean [commerceCartCalculationMethodHooks]
    [m[32mINFO [localhost-startStop-3] (junit) [ListMergeDirectiveBeanPostProcessor] Post Processing ListMergeDirective [commerceAddToCartProductConfigMergeDirective] on Bean [commerceAddToCartMethodHooks]
    [m[32mINFO [localhost-startStop-3] (junit) [MapMergeDirectiveBeanPostProcessor] Post Processing MapMergeDirective [textFieldConfigurationHandlerRegistrar] on Bean [productConfigurationHandlers]
    [m[32mINFO [localhost-startStop-7] [RemoveDefaultSessionFixationStrategyBeanPostProcessor] Spring default SessionFixationProtectionStrategy was not defined. Added HybrisSessionFixationProtectionStrategy

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

  • 相关阅读:
    Spring bean的实例化
    提交本地代码到github
    ORM框架——SQLAlchemy
    代码发布项目(三)——python操作git、代码发布流程(服务器管理、项目管理)
    代码发布项目(二)——django实现websocket(使用channels)、基于channels实现群聊功能、gojs插件、paramiko模块
    代码发布项目(一)——实现服务端主动给客户端推送消息(websocket)
    索引补充(索引种类,正确使用索引,其他注意事项,慢日志查询)
    mysql索引种类(索引种类和建立索引)
    centos6安装Docker遇到的问题(升级centos6内核)
    Django1.11下载安装xadmin
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/11954034.html
Copyright © 2011-2022 走看看