コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.
解決済み

Is there a dispatcher config template that I can use as a starter config?

Avatar

Level 9

if it's available, can you please provide the link? Thanks

トピック

トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

@jayv25585659 

 

Default configurations of dispatcher are available, when we create a new AEM project via archetype.

 

You can also check them at:

https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.ams

 

https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.cloud 


Aanchal Sikka

元の投稿で解決策を見る

5 返信

Avatar

Community Advisor

You can simply create a new AEM project using the latest maven archetype which will provide you with all the basic config you need. Sample below for AEM cloud :

mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=49 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite" -D aemVersion="cloud" -D includeDispatcherConfig="y"

It will create a disaptcher folder with the basic starter config in place.
More details :
https://github.com/adobe/aem-project-archetype  

Avatar

Community Advisor

Hi @jayv25585659 

In case you are looking for onprem/ams version you can refer to the basic one from the below link and update the same

 

https://github.com/adobe/aem-guides-wknd/blob/main/dispatcher/README.md

 

Avatar

正解者
Community Advisor

@jayv25585659 

 

Default configurations of dispatcher are available, when we create a new AEM project via archetype.

 

You can also check them at:

https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.ams

 

https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.cloud 


Aanchal Sikka

Avatar

Administrator

@jayv25585659 Did you find the suggestion helpful? Please let us know if you require more information. Otherwise, please mark the answer as correct for posterity. If you've discovered a solution yourself, we would appreciate it if you could share it with the community. Thank you!  



Kautuk Sahni

Avatar

Community Advisor and Adobe Champion

Hi,

 

The AEM Archetype is the official "template" that you should use. It ships with a "default" set of dispatcher configurations that are compatible with the version you will be deploying. There are no other official blueprints available, but you can also refer to this documentation which explains in detail the components of this blueprint: https://experienceleague.adobe.com/en/docs/experience-manager-dispatcher/using/configuring/dispatche...

 

Hope this helps



Esteban Bustamante