AEM Core WCM 组件项目教程

AEM Core WCM 组件项目教程

aem-core-wcm-componentsStandardized components to build websites with AEM.项目地址:https://gitcode.com/gh_mirrors/ae/aem-core-wcm-components

1. 项目的目录结构及介绍

AEM Core WCM 组件项目的目录结构如下:

aem-core-wcm-components/
├── core/
│   ├── src/
│   │   ├── main/
│   │   │   ├── java/
│   │   │   │   └── com/
│   │   │   │       └── adobe/
│   │   │   │           └── aem/
│   │   │   │               └── core/
│   │   │   │                   └── wcm/
│   │   │   │                       └── components/
│   │   │   │                           └── ...
│   │   │   └── resources/
│   │   │       └── META-INF/
│   │   │           └── ...
│   │   └── test/
│   │       ├── java/
│   │       │   └── ...
│   │       └── resources/
│   │           └── ...
├── ui.apps/
│   ├── src/
│   │   ├── main/
│   │   │   ├── content/
│   │   │   │   └── jcr_root/
│   │   │   │       └── apps/
│   │   │   │           └── core/
│   │   │   │               └── components/
│   │   │   │                   └── ...
│   │   │   └── resources/
│   │   │       └── ...
│   └── pom.xml
├── ui.content/
│   ├── src/
│   │   ├── main/
│   │   │   ├── content/
│   │   │   │   └── jcr_root/
│   │   │   │       └── content/
│   │   │   │           └── core/
│   │   │   │               └── components/
│   │   │   │                   └── ...
│   │   │   └── resources/
│   │   │       └── ...
│   └── pom.xml
├── it.tests/
│   ├── src/
│   │   ├── main/
│   │   │   ├── java/
│   │   │   │   └── ...
│   │   │   └── resources/
│   │   │       └── ...
│   └── pom.xml
├── dispatcher/
│   ├── src/
│   │   ├── main/
│   │   │   ├── content/
│   │   │   │   └── conf/
│   │   │   │       └── ...
│   │   │   └── resources/
│   │   │       └── ...
│   └── pom.xml
├── pom.xml
└── README.md

目录结构介绍

  • core/: 包含核心组件的Java代码和资源文件。
  • ui.apps/: 包含组件的客户端代码和资源文件。
  • ui.content/: 包含示例内容和配置。
  • it.tests/: 包含集成测试代码。
  • dispatcher/: 包含Dispatcher配置文件。
  • pom.xml: 项目的Maven配置文件。
  • README.md: 项目说明文档。

2. 项目的启动文件介绍

项目的启动文件主要是Maven配置文件 pom.xml,它定义了项目的依赖关系、构建配置和插件。以下是 pom.xml 的部分内容:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.adobe.aem</groupId>
    <artifactId>aem-core-wcm-components</artifactId>
    <version>2.26.0</version>
    <packaging>pom</packaging>
    <modules>
        <module>core</module>
        <module>ui.apps</module>
        <module>ui.content</module>
        <module>it.tests</module>
        <module>dispatcher</module>
    </modules>
    ...
</project>

启动文件介绍

aem-core-wcm-componentsStandardized components to build websites with AEM.项目地址:https://gitcode.com/gh_mirrors/ae/aem-core-wcm-components

  • 3
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

穆继宪Half-Dane

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值