{"id":80,"date":"2024-09-19T12:11:57","date_gmt":"2024-09-19T15:11:57","guid":{"rendered":"https:\/\/bc.novooobj.xyz\/erro-secondlevel-cache-is-not-enabled-for-usage\/"},"modified":"2025-03-25T11:33:39","modified_gmt":"2025-03-25T14:33:39","slug":"erro-secondlevel-cache-como-resolver","status":"publish","type":"post","link":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/","title":{"rendered":"Erro: Second-level cache is not enabled for usage - Como resolver?"},"content":{"rendered":"\n<p>Essa exce\u00e7\u00e3o \u00e9 ocasionada quando no arquivo de configura\u00e7\u00e3o <strong>hibernate.properties<\/strong>, usado por todos os servi\u00e7os que se conectam com o banco de dados, n\u00e3o possui o par\u00e2metro <code>hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider<\/code> quando o par\u00e2metro <code>hibernate.cache.use_second_level_cache = true<\/code> (ativo).<\/p>\n\n\n\n<p><strong>Exemplo de configura\u00e7\u00e3o no hibernate.properties<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code-block-pro\"><pre class=\"EnlighterJSRAW\"># 2d level cache\nhibernate.cache.use_query_cache=false\nhibernate.cache.use_second_level_cache=true\n#hibernate.cache.region.factory_class=net.sf.ehcache.hibernate.EhCacheRegionFactory\nhibernate.cache.region.factory_class=net.sf.ehcache.hibernate.SingletonEhCacheRegionFactory\nnet.sf.ehcache.configurationResourceName=\/ehcache-local.xml<\/pre><\/pre>\n\n\n\n<p><strong>Exemplo da exce\u00e7\u00e3o nos logs<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code-block-pro\"><pre class=\"EnlighterJSRAW\">WrapperSimpleApp: Encountered an error running main:\nWrapperSimpleApp: javax.persistence.PersistenceException: [PersistenceUnit: oobj-mail] Unable to build EntityManagerFactory\nWrapperSimpleApp:     at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:677)\nWrapperSimpleApp:     at org.hibernate.ejb.HibernatePersistence.createEntityManagerFactory(HibernatePersistence.java:126)\nWrapperSimpleApp:     at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:52)\nWrapperSimpleApp:     at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:34)\nWrapperSimpleApp:     at org.utils.core.dao.jpa.jse.JpaDaoImplJse.createEntityManagerFactory(JpaDaoImplJse.java:33)\nWrapperSimpleApp:     at br.com.oobj.mail.MailMain.main(MailMain.java:27)\nWrapperSimpleApp:     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\nWrapperSimpleApp:     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)\nWrapperSimpleApp:     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\nWrapperSimpleApp:     at java.lang.reflect.Method.invoke(Unknown Source)\nWrapperSimpleApp:     at org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:236)\nWrapperSimpleApp:     at java.lang.Thread.run(Unknown Source)\nWrapperSimpleApp: Caused by: org.hibernate.HibernateException: Could not instantiate cache implementation\nWrapperSimpleApp:     at org.hibernate.cache.CacheFactory.createCache(CacheFactory.java:64)\nWrapperSimpleApp:     at org.hibernate.impl.SessionFactoryImpl.&lt;init&gt;(SessionFactoryImpl.java:214)\nWrapperSimpleApp:     at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1300)\nWrapperSimpleApp:     at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:867)\nWrapperSimpleApp:     at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:669)\nWrapperSimpleApp:     ... 11 more\nWrapperSimpleApp: Caused by: org.hibernate.cache.NoCachingEnabledException: Second-level cache is not enabled for usage \n[hibernate.cache.use_second_level_cache | hibernate.cache.use_query_cache]\nWrapperSimpleApp:     at org.hibernate.cache.NoCacheProvider.buildCache(NoCacheProvider.java:21)\nWrapperSimpleApp:     at org.hibernate.cache.CacheFactory.createCache(CacheFactory.java:61)\nWrapperSimpleApp:     ... 15 more<\/pre><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"solucao\"><a href=\"#solucao\">Solu\u00e7\u00e3o<\/a><\/h2>\n\n\n\n<p>Para corrigir essa exce\u00e7\u00e3o, voc\u00ea deve editar o arquivo <strong>hibernate.properties\u00a0<\/strong>salvo na pasta &#8220;..\\config&#8221; de cada servi\u00e7o Oobj. Para isso, abra o arquivo com um editor de texto (sugerimos o uso do <a href=\"https:\/\/notepad-plus-plus.org\/download\">NotePad++<\/a>).<\/p>\n\n\n\n<p><strong>Exemplo<\/strong>:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><code>C:\\Oobj\\Aplicativos\\Oobj\\oobj-motor\\config\\hibernate.properties<\/code><\/p>\n<\/blockquote>\n\n\n\n<p>H\u00e1 duas op\u00e7\u00f5es para corrigir o problema:<\/p>\n\n\n\n<p>1. <strong>Desativar o par\u00e2metro<\/strong>\u00a0<code>hibernate.cache.use_second_level_cache\u00a0(false)<\/code>.<\/p>\n\n\n\n<p><strong>Exemplo<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code-block-pro\"><pre class=\"EnlighterJSRAW\">hibernate.cache.use_query_cache=false\nhibernate.cache.use_second_level_cache=false\n#hibernate.cache.region.factory_class=net.sf.ehcache.hibernate.EhCacheRegionFactory\nhibernate.cache.region.factory_class=net.sf.ehcache.hibernate.SingletonEhCacheRegionFactory\nnet.sf.ehcache.configurationResourceName=\/ehcache-local.xml<\/pre><\/pre>\n\n\n\n<p>2. <strong>Adicionar o par\u00e2metro<\/strong>\u00a0<code>hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider<\/code>.<\/p>\n\n\n\n<p><strong>Exemplo<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code-block-pro\"><pre class=\"EnlighterJSRAW\"># 2d level cache\nhibernate.cache.use_query_cache=false\nhibernate.cache.use_second_level_cache=true\nhibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider\n#hibernate.cache.region.factory_class=net.sf.ehcache.hibernate.EhCacheRegionFactory\nhibernate.cache.region.factory_class=net.sf.ehcache.hibernate.SingletonEhCacheRegionFactory\nnet.sf.ehcache.configurationResourceName=\/ehcache-local.xml<\/pre><\/pre>\n","protected":false},"excerpt":{"rendered":"Essa exce\u00e7\u00e3o \u00e9 ocasionada quando no arquivo de configura\u00e7\u00e3o hibernate.properties, usado por todos os servi\u00e7os que se conectam com o&hellip;","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"ub_ctt_via":"","footnotes":""},"categories":[248],"tags":[202],"class_list":["post-80","post","type-post","status-publish","format-standard","hentry","category-ajuda-suporte","tag-nao-revisado"],"acf":[],"featured_image_src":null,"author_info":{"display_name":"Malu Duarte","author_link":"https:\/\/oobj.com.br\/bc\/author\/malu-duarte\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Erro: Second-level cache is not enabled for usage - Como resolver? - Base de Conhecimento - Oobj<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Erro: Second-level cache is not enabled for usage - Como resolver? - Base de Conhecimento - Oobj\" \/>\n<meta property=\"og:description\" content=\"Essa exce\u00e7\u00e3o \u00e9 ocasionada quando no arquivo de configura\u00e7\u00e3o hibernate.properties, usado por todos os servi\u00e7os que se conectam com o&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/\" \/>\n<meta property=\"og:site_name\" content=\"Base de Conhecimento - Oobj\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/oobjti\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-19T15:11:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-25T14:33:39+00:00\" \/>\n<meta name=\"author\" content=\"Malu Duarte\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Malu Duarte\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/\"},\"author\":{\"name\":\"Malu Duarte\",\"@id\":\"https:\/\/oobj.com.br\/bc\/#\/schema\/person\/d5b05a7bbe2be07843923019324402ad\"},\"headline\":\"Erro: Second-level cache is not enabled for usage - Como resolver?\",\"datePublished\":\"2024-09-19T15:11:57+00:00\",\"dateModified\":\"2025-03-25T14:33:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/\"},\"wordCount\":118,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/oobj.com.br\/bc\/#organization\"},\"keywords\":[\"nao revisado\"],\"articleSection\":[\"Ajuda e suporte\"],\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/\",\"url\":\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/\",\"name\":\"Erro: Second-level cache is not enabled for usage - Como resolver? - Base de Conhecimento - Oobj\",\"isPartOf\":{\"@id\":\"https:\/\/oobj.com.br\/bc\/#website\"},\"datePublished\":\"2024-09-19T15:11:57+00:00\",\"dateModified\":\"2025-03-25T14:33:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/oobj.com.br\/bc\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Erro: Second-level cache is not enabled for usage - Como resolver?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/oobj.com.br\/bc\/#website\",\"url\":\"https:\/\/oobj.com.br\/bc\/\",\"name\":\"Base de Conhecimento - Oobj\",\"description\":\"Aprenda tudo sobre nossas solu\u00e7\u00f5es, desde o que significa um \u00edcone na tela at\u00e9 como completar uma tarefa.\",\"publisher\":{\"@id\":\"https:\/\/oobj.com.br\/bc\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/oobj.com.br\/bc\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/oobj.com.br\/bc\/#organization\",\"name\":\"Oobj Tecnologia da Informa\u00e7\u00e3o\",\"url\":\"https:\/\/oobj.com.br\/bc\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/oobj.com.br\/bc\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/2024\/10\/logo.png\",\"contentUrl\":\"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/2024\/10\/logo.png\",\"width\":512,\"height\":168,\"caption\":\"Oobj Tecnologia da Informa\u00e7\u00e3o\"},\"image\":{\"@id\":\"https:\/\/oobj.com.br\/bc\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/oobjti\",\"https:\/\/www.instagram.com\/oobjti\",\"https:\/\/www.linkedin.com\/company\/oobjti\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/oobj.com.br\/bc\/#\/schema\/person\/d5b05a7bbe2be07843923019324402ad\",\"name\":\"Malu Duarte\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/oobj.com.br\/bc\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/nsl_avatars\/454927dc8b9b69d69aaf0b3bee9c909b.png\",\"contentUrl\":\"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/nsl_avatars\/454927dc8b9b69d69aaf0b3bee9c909b.png\",\"caption\":\"Malu Duarte\"},\"url\":\"https:\/\/oobj.com.br\/bc\/author\/malu-duarte\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Erro: Second-level cache is not enabled for usage - Como resolver? - Base de Conhecimento - Oobj","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/","og_locale":"pt_BR","og_type":"article","og_title":"Erro: Second-level cache is not enabled for usage - Como resolver? - Base de Conhecimento - Oobj","og_description":"Essa exce\u00e7\u00e3o \u00e9 ocasionada quando no arquivo de configura\u00e7\u00e3o hibernate.properties, usado por todos os servi\u00e7os que se conectam com o&hellip;","og_url":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/","og_site_name":"Base de Conhecimento - Oobj","article_publisher":"https:\/\/www.facebook.com\/oobjti","article_published_time":"2024-09-19T15:11:57+00:00","article_modified_time":"2025-03-25T14:33:39+00:00","author":"Malu Duarte","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"Malu Duarte","Est. tempo de leitura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#article","isPartOf":{"@id":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/"},"author":{"name":"Malu Duarte","@id":"https:\/\/oobj.com.br\/bc\/#\/schema\/person\/d5b05a7bbe2be07843923019324402ad"},"headline":"Erro: Second-level cache is not enabled for usage - Como resolver?","datePublished":"2024-09-19T15:11:57+00:00","dateModified":"2025-03-25T14:33:39+00:00","mainEntityOfPage":{"@id":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/"},"wordCount":118,"commentCount":0,"publisher":{"@id":"https:\/\/oobj.com.br\/bc\/#organization"},"keywords":["nao revisado"],"articleSection":["Ajuda e suporte"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/","url":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/","name":"Erro: Second-level cache is not enabled for usage - Como resolver? - Base de Conhecimento - Oobj","isPartOf":{"@id":"https:\/\/oobj.com.br\/bc\/#website"},"datePublished":"2024-09-19T15:11:57+00:00","dateModified":"2025-03-25T14:33:39+00:00","breadcrumb":{"@id":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/oobj.com.br\/bc\/erro-secondlevel-cache-como-resolver\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/oobj.com.br\/bc\/"},{"@type":"ListItem","position":2,"name":"Erro: Second-level cache is not enabled for usage - Como resolver?"}]},{"@type":"WebSite","@id":"https:\/\/oobj.com.br\/bc\/#website","url":"https:\/\/oobj.com.br\/bc\/","name":"Base de Conhecimento - Oobj","description":"Aprenda tudo sobre nossas solu\u00e7\u00f5es, desde o que significa um \u00edcone na tela at\u00e9 como completar uma tarefa.","publisher":{"@id":"https:\/\/oobj.com.br\/bc\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/oobj.com.br\/bc\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/oobj.com.br\/bc\/#organization","name":"Oobj Tecnologia da Informa\u00e7\u00e3o","url":"https:\/\/oobj.com.br\/bc\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/oobj.com.br\/bc\/#\/schema\/logo\/image\/","url":"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/2024\/10\/logo.png","contentUrl":"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/2024\/10\/logo.png","width":512,"height":168,"caption":"Oobj Tecnologia da Informa\u00e7\u00e3o"},"image":{"@id":"https:\/\/oobj.com.br\/bc\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/oobjti","https:\/\/www.instagram.com\/oobjti","https:\/\/www.linkedin.com\/company\/oobjti\/"]},{"@type":"Person","@id":"https:\/\/oobj.com.br\/bc\/#\/schema\/person\/d5b05a7bbe2be07843923019324402ad","name":"Malu Duarte","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/oobj.com.br\/bc\/#\/schema\/person\/image\/","url":"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/nsl_avatars\/454927dc8b9b69d69aaf0b3bee9c909b.png","contentUrl":"https:\/\/oobj.com.br\/bc\/wp-content\/uploads\/nsl_avatars\/454927dc8b9b69d69aaf0b3bee9c909b.png","caption":"Malu Duarte"},"url":"https:\/\/oobj.com.br\/bc\/author\/malu-duarte\/"}]}},"_links":{"self":[{"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/posts\/80","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/comments?post=80"}],"version-history":[{"count":1,"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/posts\/80\/revisions"}],"predecessor-version":[{"id":10800,"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/posts\/80\/revisions\/10800"}],"wp:attachment":[{"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/media?parent=80"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/categories?post=80"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oobj.com.br\/bc\/wp-json\/wp\/v2\/tags?post=80"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}