OSGI Configuration

How to encrypt and decrypt OSGI config values

First, we have to make a service configuration by using the code given below. In this code I am showing you the normal way to show osgi config value. @Component(service = TestService.class, immediate = true) @Designate(ocd = TestService.TestConfig.class) public class TestService {    @ObjectClassDefinition(name = “TestConfig”, description = “This is the test config”)    public @interface TestConfig […]

Read More

OCD issue with @Activate annotation

In this blog, I will explain a very common error made by AEM developers during the development of OSGi Components. So most of the AEM developers those earlier used Felix SCR annotation for OSGi component creation, made this common mistake.   Here are some common issue statements said by AEM developers. Some developers said that […]

Read More