AD0-E137 문제 11

개발자가 AEM Cloud Service 인스턴스에 noot이라는 새 테넌트를 생성하고 있습니다. 팀은 각 테넌트에 대해 독립적인 저장소를 사용하고 있으며, git 서브모듈 도구도 사용하고 있습니다.
새로운 noot 테넌트 저장소가 배포되도록 하려면 개발자는 무엇을 해야 합니까?

AD0-E137 문제 12

한 고객이 지난 며칠 동안 Adobe Experience Manager 성능 저하를 발견했습니다. 세그먼트 스토어 규모가 지난주보다 거의 두 배에 달했습니다.
세그먼트 스토어 크기를 줄이고 전반적인 Adobe Experience Manager 상태를 유지하려면 어떤 두 가지 Adobe Experience Manager 유지 관리 작업을 매주 실행해야 합니까? (두 가지를 선택하세요.)

AD0-E137 문제 13

개발자는 다음 필드가 있는 구성 요소를 만들었습니다.

올바른 HTL 코드와 그에 따라 생성된 유효한 URL 경로는 무엇입니까?
에이)
HTL 코드:
<a href="{properties.pagePath}.html/{properties.additionalInfo}">{properties.label}</a> 페이지 경로:
/content/testsite/ko/page1.html/제품/테스트1
비)
HTL 코드:
<a href="{properties.pagePath}/{properties.additionalInfo}.html">{properties.label}</a> 페이지 경로:
/content/testsite/ko/page1/product/test1.html
기음)
HTL 코드:
<a href="{properties.additionalInfo}.html/{properties.pagePath}">{properties.label}</a> 페이지 경로:
/product/test1.html/content/testsite/ko/page1

AD0-E137 문제 14

AEM 프로젝트에서 프런트엔드 종속성을 관리하고 번들링, 최소화, 변환과 같은 작업을 자동화하는 데 일반적으로 사용되는 도구는 무엇입니까?

AD0-E137 문제 15

개발자는 GET 메서드를 처리할 수 있는 HTTP 요청을 수신하는 Adobe Experience Manager 서블릿 MyServlet을 생성해야 합니다. 이 서블릿은 선언적 서비스(OSGi)를 사용하여 등록되어야 하며, 특정 리소스 유형(/my/resourcetype)에 바인딩되어야 특정 구성 요소에 대한 요청을 처리할 수 있습니다.
서블릿을 등록하는 올바른 방법은 무엇입니까?
에이)
@SlingServletResourceTypes(resourceTypes ="/my/resourcetype", methods = {"get"}) public 클래스 MyServlet은 SlingSafeMethodServlet을 확장합니다.
@보수
보호된 void doGET(SlingHttpServletRequest 요청, SlingHttpServletResponse 응답)은 ServletException, IOException을 throw합니다.
// get 요청 처리
}
}
비)
@SlingServletResourceTypes(resourceTypes="/my/resourcetype", methods = { "GET" }) public 클래스 MyServlet은 SlingAllMethodsServlet을 확장합니다.
@보수
보호된 void doGet(SlingHttpServletRequest 요청, SlingHttpServletResponse 응답)은 ServletException, IOException을 throw합니다.
// get 요청 처리
}
}
기음)
@SlingServletResourceTypes(resourceTypes ="/my/resourcetype", methods = { "get" }) public 클래스 MyServlet은 SlingSafeMethodServlet을 확장합니다.
@보수
보호된 void doGet(HttpServletRequest 요청, HttpServletResponse 응답)은 ServletException, IOException을 throw합니다.
// get 요청 처리
}
}