Expand my Community achievements bar.

SOLVED

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

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
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

View solution in original post

5 Replies

Avatar

Level 6

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

Level 9

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

Correct answer by
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

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