{"id":24939,"date":"2015-08-03T23:56:58","date_gmt":"2015-08-03T18:26:58","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=24939"},"modified":"2015-08-04T09:46:22","modified_gmt":"2015-08-04T04:16:22","slug":"integrating-spring-aop-with-aem","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/","title":{"rendered":"Integrating Spring AOP with AEM"},"content":{"rendered":"<p><strong>Spring AOP<\/strong><\/p>\n<p>Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic.<\/p>\n<p>This blog post will explain how to enable aspects in <a title=\"Our AMC Case Studies\" href=\"https:\/\/tothenewco.pro\/success-stories\/#amc\">our AEM projects<\/a> using aspectj-maven-plugin.<br \/>\nBelow are the steps for various configuration we need to make.<\/p>\n<p><strong>Configuration at pom level<\/strong><\/p>\n<p>In plugin section add following lines of code<\/p>\n<p>[xml]<\/p>\n<p>&lt;plugin&gt;<br \/>\n    &lt;groupId&gt;org.codehaus.mojo&lt;\/groupId&gt;<br \/>\n    &lt;artifactId&gt;aspectj-maven-plugin&lt;\/artifactId&gt;<br \/>\n    &lt;version&gt;1.3&lt;\/version&gt;<br \/>\n    &lt;configuration&gt;<br \/>\n        &lt;complianceLevel&gt;1.7&lt;\/complianceLevel&gt;<br \/>\n    &lt;\/configuration&gt;<br \/>\n    &lt;executions&gt;<br \/>\n        &lt;execution&gt;<br \/>\n            &lt;goals&gt;<br \/>\n                &lt;goal&gt;compile&lt;\/goal&gt;<br \/>\n            &lt;\/goals&gt;<br \/>\n        &lt;\/execution&gt;<br \/>\n    &lt;\/executions&gt;<br \/>\n&lt;\/plugin&gt;<\/p>\n<p>[\/xml]<\/p>\n<p>In dependency section add<\/p>\n<p>[xml]<\/p>\n<p>&lt;dependencies&gt;<br \/>\n    &lt;dependency&gt;<br \/>\n\t\t\t&lt;groupId&gt;org.aspectj&lt;\/groupId&gt;<br \/>\n\t\t\t&lt;artifactId&gt;aspectjrt&lt;\/artifactId&gt;<br \/>\n\t\t\t&lt;version&gt;1.6.7&lt;\/version&gt;<br \/>\n\t\t\t&lt;scope&gt;compile&lt;\/scope&gt;<br \/>\n   &lt;\/dependency&gt;<br \/>\n    &lt;!&#8211; Day CQ5 WCM Dependencies &#8211;&gt;<br \/>\n    &lt;!&#8211; Apache Sling Dependencies &#8211;&gt;<br \/>\n    &lt;!&#8211; Apache Jackrabbit\/JCR Dependencies &#8211;&gt;<br \/>\n&lt;\/dependencies&gt;<\/p>\n<p>[\/xml]<\/p>\n<p>The Aspect class need to placed under folder src\/main\/aspect.<br \/>\n<em>sample project structure<\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-24977\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/08\/Capture.png\" alt=\"Capture\" width=\"325\" height=\"220\" \/><\/p>\n<p>Below is the sample class which is used to log messages whenever the execution of method starts and end for all java classes methods that are inside the package com.ig<\/p>\n<p>[java]<br \/>\npackage com.ig.aspects;<\/p>\n<p>import org.aspectj.lang.JoinPoint;<br \/>\nimport org.aspectj.lang.annotation.After;<br \/>\nimport org.aspectj.lang.annotation.Aspect;<br \/>\nimport org.aspectj.lang.annotation.Before;<br \/>\nimport org.aspectj.lang.annotation.Pointcut;<br \/>\nimport org.slf4j.Logger;<br \/>\nimport org.slf4j.LoggerFactory;<\/p>\n<p>@Aspect<br \/>\npublic class LoggerAspect {<\/p>\n<p>\t@Pointcut(value = &quot;execution(public * com.ig.core.*.*(..))&quot;)<br \/>\n\tpublic void anyMethod() {<br \/>\n\t}<\/p>\n<p>\t@Before(value = &quot;anyMethod()&quot;)<br \/>\n\tpublic void logEntry(JoinPoint joinPoint) {<br \/>\n\t\tLogger logger = LoggerFactory.getLogger(joinPoint.getTarget().getClass());<br \/>\n\t\tlogger.info(&quot;Method Started&#8230;.&quot;+joinPoint.getSignature().getName()+&quot;()&quot;);<br \/>\n\t}<\/p>\n<p>\t@After(value = &quot;anyMethod()&quot;)<br \/>\n\tpublic void logExit(JoinPoint joinPoint) {<br \/>\n\t\tLogger logger = LoggerFactory.getLogger(joinPoint.getTarget().getClass());<br \/>\n\t\tlogger.info(&quot; Method Exited&#8230;&quot;+joinPoint.getSignature().getName()+&quot;()&quot;);<br \/>\n\t}<br \/>\n}<\/p>\n<p>[\/java]<\/p>\n<p><strong><em>execution(public * com.ig.core.*.*(..))<\/em><\/strong> : the execution of any method defined in the <strong>core<\/strong> package or a sub-package<br \/>\n<strong><em>@Before <\/em><\/strong>Before advice It will execute before the method execution<br \/>\n<strong><em>@After<\/em><\/strong> After returning advice tt will execute after the method is returned a result.<\/p>\n<p>Refer Spring\u2019s AOP documentation for Joint Point, Advice, Pointcuts, etc. and depending upon the use case in your application select the right one.<\/p>\n<p>References:<br \/>\nhttp:\/\/docs.spring.io\/spring\/docs\/2.5.5\/reference\/aop.html<br \/>\nhttp:\/\/docs.spring.io\/spring\/docs\/current\/spring-framework-reference\/html\/aop.html<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects [&hellip;]<\/p>\n","protected":false},"author":82,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":33,"footnotes":""},"categories":[1],"tags":[4847,2106,4841,2113],"class_list":["post-24939","post","type-post","status-publish","format-standard","hentry","category-technology","tag-aem","tag-aspect","tag-spring","tag-spring-aop-with-aem"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yagyesh\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Integrating Spring AOP with AEM | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Integrating Spring AOP with AEM | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#article\",\"name\":\"Integrating Spring AOP with AEM | TO THE NEW Blog\",\"headline\":\"Integrating Spring AOP with AEM\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/yagyesh\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/08\\\/Capture.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#articleImage\"},\"datePublished\":\"2015-08-03T23:56:58+05:30\",\"dateModified\":\"2015-08-04T09:46:22+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#webpage\"},\"articleSection\":\"Technology, AEM, Aspect, Spring, Spring AOP with AEM\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#listItem\",\"name\":\"Integrating Spring AOP with AEM\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#listItem\",\"position\":3,\"name\":\"Integrating Spring AOP with AEM\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/yagyesh\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/yagyesh\\\/\",\"name\":\"Yagyesh\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ee3c3a5cbde01ca951fc4a59e40c9ed9143f262dd0c7f87e07d8abc5dfb2aeca?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Yagyesh\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/\",\"name\":\"Integrating Spring AOP with AEM | TO THE NEW Blog\",\"description\":\"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/integrating-spring-aop-with-aem\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/yagyesh\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/yagyesh\\\/#author\"},\"datePublished\":\"2015-08-03T23:56:58+05:30\",\"dateModified\":\"2015-08-04T09:46:22+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Integrating Spring AOP with AEM | TO THE NEW Blog","description":"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects","canonical_url":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#article","name":"Integrating Spring AOP with AEM | TO THE NEW Blog","headline":"Integrating Spring AOP with AEM","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/yagyesh\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/08\/Capture.png","@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#articleImage"},"datePublished":"2015-08-03T23:56:58+05:30","dateModified":"2015-08-04T09:46:22+05:30","inLanguage":"en-US","commentCount":4,"mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#webpage"},"articleSection":"Technology, AEM, Aspect, Spring, Spring AOP with AEM"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#listItem","name":"Integrating Spring AOP with AEM"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#listItem","position":3,"name":"Integrating Spring AOP with AEM","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/yagyesh\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/yagyesh\/","name":"Yagyesh","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/ee3c3a5cbde01ca951fc4a59e40c9ed9143f262dd0c7f87e07d8abc5dfb2aeca?s=96&d=mm&r=g","width":96,"height":96,"caption":"Yagyesh"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/","name":"Integrating Spring AOP with AEM | TO THE NEW Blog","description":"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/yagyesh\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/yagyesh\/#author"},"datePublished":"2015-08-03T23:56:58+05:30","dateModified":"2015-08-04T09:46:22+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Integrating Spring AOP with AEM | TO THE NEW Blog","og:description":"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects","og:url":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Integrating Spring AOP with AEM | TO THE NEW Blog","twitter:description":"Spring AOP Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects.Some of cases where we can use it are to control some of common things like logging , adding some extra feature without actually touching the core logic. This blog post will explain how to enable aspects in our AEM projects","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"24939","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 06:57:33","updated":"2024-02-29 10:18:22","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tIntegrating Spring AOP with AEM\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Integrating Spring AOP with AEM","link":"https:\/\/tothenewco.pro\/blog\/integrating-spring-aop-with-aem\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/24939","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/82"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=24939"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/24939\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=24939"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=24939"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=24939"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}