Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Missing AdaptiveImageComponentServlet.java in AEM 6

Avatar

Level 2

Hi All,

I am following a tutorial from below URL how to create adaptive image component

http://docs.adobe.com/docs/en/cq/current/developing/mobile/responsive.html#Using%20Adaptive%20Images

I have checked my author and publisher instance however I cannot find the file /apps/geometrixx-commons/src/core/src/main/java/info/geometrixx/commons/impl/servlets/AdaptiveImageComponentServlet.java

Any idea where I can get the file?

Thanks!

1 Accepted Solution

Avatar

Correct answer by
Level 10

/libs/foundation/src/impl/src/com/day/cq/wcm/foundation/impl/AdaptiveImageComponentServlet.java

View solution in original post

5 Replies

Avatar

Correct answer by
Level 10

/libs/foundation/src/impl/src/com/day/cq/wcm/foundation/impl/AdaptiveImageComponentServlet.java

Avatar

Level 8

Sham HC wrote...

/libs/foundation/src/impl/src/com/day/cq/wcm/foundation/impl/AdaptiveImageComponentServlet.java

 

I updated the docs for AEM 6.0 accordingly.

http://docs.adobe.com/docs/en/aem/6-0/develop/mobile/responsive.html#Understanding%20the%20Adaptive%...

scott

Avatar

Level 2

Hi Sham HC,

I am planning to extend the class com.day.cq.wcm.foundation.AdaptiveImageComponentServlet and trying to import the jar file using below dependency call directive. I got below maven dependency using the http://localhost:4502/system/console/depfinder

<dependency> <groupId>com.day.cq.wcm</groupId> <artifactId>cq-wcm-foundation</artifactId> <version>5.7.8</version> <scope>provided</scope> </dependency>

Unfortunately seems the version 5.7.8 is not yet available from the Adobe maven repository and i am having some compile error , how do you normally manage this?

Any advice?