{"id":5550,"date":"2012-05-12T14:07:53","date_gmt":"2012-05-12T08:37:53","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=5550"},"modified":"2015-07-09T16:01:21","modified_gmt":"2015-07-09T10:31:21","slug":"overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/","title":{"rendered":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor"},"content":{"rendered":"<p>I was going through the source code of one of the Grails Plugins where I found the use of Spring&#8217;s <a href=\"http:\/\/static.springsource.org\/spring\/docs\/3.0.x\/javadoc-api\/org\/springframework\/beans\/factory\/support\/BeanDefinitionRegistryPostProcessor.html\" target=\"_blank\">BeanDefinitionRegistryPostProcessor<\/a> to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a <a href=\"http:\/\/static.springsource.org\/spring\/docs\/3.0.x\/api\/org\/springframework\/beans\/PropertyValue.html\" target=\"_blank\">PropertyValue<\/a> definition.<\/p>\n<p>&nbsp;<\/p>\n<p>It set me thinking about whether there is a way to override bean properties like String, Integer etc in a simpler way after the bean has initialized. In comes <a href=\"http:\/\/static.springsource.org\/spring\/docs\/3.0.x\/javadoc-api\/org\/springframework\/beans\/factory\/config\/BeanFactoryPostProcessor.html\" target=\"_blank\">BeanFactoryPostProcessor<\/a>, which provides a wonderful hook to do just that.<\/p>\n<p>&nbsp;<\/p>\n<p>I created a small grails project and added a class CustomBean which looked like this :<\/p>\n<p>[java]<\/p>\n<p>class CustomBean {<br \/>\n       String customVariable<br \/>\n}<br \/>\n[\/java]<\/p>\n<p>I registered a <em>customBean<\/em> on resources.groovy using<\/p>\n<p>[java]<br \/>\nbeans = {<br \/>\n    customBean(CustomBean) {<br \/>\n        String value = &quot;Test Data From resources.groovy&quot;<br \/>\n        println &quot;Setting value ${value}&quot;<br \/>\n        customVariable = value<br \/>\n    }<\/p>\n<p>    customBeanPostProcessor(CustomBeanPostprocessor)<br \/>\n}<br \/>\n[\/java]<\/p>\n<p>This sets the initial value of <em>customVariable<\/em> as &#8220;Test Data From resources.groovy&#8221;.<\/p>\n<p>If you are wondering what the customBeanPostprocessor is, that is just what I am going to explain next.<br \/>\nThe bean implements the BeanFactoryPostProcessor interface and overrides the methods which provides us with hooks to modify the properties of the bean.<\/p>\n<p>&nbsp;<\/p>\n<p>The class definition is:<\/p>\n<p>[java]<br \/>\nimport groovy.util.logging.Log4j<br \/>\nimport org.springframework.beans.factory.config.BeanPostProcessor<\/p>\n<p>@Log4j<br \/>\nclass CustomBeanPostprocessor implements BeanPostProcessor{<\/p>\n<p>    @Override<br \/>\n    Object postProcessBeforeInitialization(Object bean, String beanName) {<br \/>\n        return bean<br \/>\n    }<\/p>\n<p>    @Override<br \/>\n    Object postProcessAfterInitialization(Object bean, String beanName) {<br \/>\n        if(beanName == &#8216;customBean&#8217;) {<br \/>\n            log.debug(&quot;Setting custom value inside post processor&quot;)<br \/>\n            bean.customVariable = &quot;Set from Post Processor&quot;<br \/>\n        }<br \/>\n        return bean<br \/>\n    }<br \/>\n}<br \/>\n[\/java]<\/p>\n<p>What amazed me is the elegance <a title=\"Grails Developers\" href=\"https:\/\/tothenewco.pro\/grails-application-development\">with which the developers of the framework<\/a> has provided entry points into its internals without forcing the users to shave the yak.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I was going through the source code of one of the Grails Plugins where I found the use of Spring&#8217;s BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. &nbsp; It set me thinking about whether there is a way to override bean properties [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":9,"footnotes":""},"categories":[7],"tags":[819,4840,4841,820],"class_list":["post-5550","post","type-post","status-publish","format-standard","hentry","category-grails","tag-bean-post-processing","tag-grails","tag-spring","tag-spring-internals"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"I was going through the source code of one of the Grails Plugins where I found the use of Spring&#039;s BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vivek Krishna\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/\" \/>\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=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"I was going through the source code of one of the Grails Plugins where I found the use of Spring&#039;s BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/\" \/>\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 property=\"article:tag\" content=\"grails\" \/>\n\t\t<meta property=\"article:tag\" content=\"bean post processing\" \/>\n\t\t<meta property=\"article:tag\" content=\"spring\" \/>\n\t\t<meta property=\"article:tag\" content=\"spring internals\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-05-12T08:37:53+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-07-09T10:31:21+00:00\" \/>\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=\"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I was going through the source code of one of the Grails Plugins where I found the use of Spring&#039;s BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties\" \/>\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\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#article\",\"name\":\"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog\",\"headline\":\"Overriding properties in a Spring Bean with BeanFactoryPostProcessor\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2012-05-12T14:07:53+05:30\",\"dateModified\":\"2015-07-09T16:01:21+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#webpage\"},\"articleSection\":\"Grails, bean post processing, Grails, Spring, spring internals\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#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\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#listItem\",\"name\":\"Overriding properties in a Spring Bean with BeanFactoryPostProcessor\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#listItem\",\"position\":3,\"name\":\"Overriding properties in a Spring Bean with BeanFactoryPostProcessor\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@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\\\/vivek\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek\\\/\",\"name\":\"Vivek Krishna\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/07dba643a97b00215bacf46343f18d6cb7ab45f777264e13c22deb54f2cc830b?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vivek Krishna\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/\",\"name\":\"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog\",\"description\":\"I was going through the source code of one of the Grails Plugins where I found the use of Spring's BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek\\\/#author\"},\"datePublished\":\"2012-05-12T14:07:53+05:30\",\"dateModified\":\"2015-07-09T16:01:21+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":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog","description":"I was going through the source code of one of the Grails Plugins where I found the use of Spring's BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties","canonical_url":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#article","name":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog","headline":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vivek\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2012-05-12T14:07:53+05:30","dateModified":"2015-07-09T16:01:21+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#webpage"},"articleSection":"Grails, bean post processing, Grails, Spring, spring internals"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#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\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/tothenewco.pro\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#listItem","name":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#listItem","position":3,"name":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@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\/vivek\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/vivek\/","name":"Vivek Krishna","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/07dba643a97b00215bacf46343f18d6cb7ab45f777264e13c22deb54f2cc830b?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vivek Krishna"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/","name":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog","description":"I was going through the source code of one of the Grails Plugins where I found the use of Spring's BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vivek\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vivek\/#author"},"datePublished":"2012-05-12T14:07:53+05:30","dateModified":"2015-07-09T16:01:21+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":"article","og:title":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog","og:description":"I was going through the source code of one of the Grails Plugins where I found the use of Spring's BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties","og:url":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/","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","article:tag":{"0":"grails","1":"bean post processing","3":"spring","4":"spring internals"},"article:published_time":"2012-05-12T08:37:53+00:00","article:modified_time":"2015-07-09T10:31:21+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor | TO THE NEW Blog","twitter:description":"I was going through the source code of one of the Grails Plugins where I found the use of Spring's BeanDefinitionRegistryPostProcessor to override some configurations that are available in DataSource.groovy. That involved a complete over riding of a PropertyValue definition. It set me thinking about whether there is a way to override bean properties","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"5550","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","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-29 23:31:50","updated":"2024-02-29 09:33:28","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\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tOverriding properties in a Spring Bean with BeanFactoryPostProcessor\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Grails","link":"https:\/\/tothenewco.pro\/blog\/category\/grails\/"},{"label":"Overriding properties in a Spring Bean with BeanFactoryPostProcessor","link":"https:\/\/tothenewco.pro\/blog\/overriding-properties-in-a-spring-bean-with-beanfactorypostprocessor\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/5550","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\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=5550"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/5550\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=5550"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=5550"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=5550"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}