Another technology gaining traction for its simplicity to build RESTful services in micro services world. Competing with Spring Boot in containerless deployment model.
Source: Home | Dropwizard… read the rest.
Another technology gaining traction for its simplicity to build RESTful services in micro services world. Competing with Spring Boot in containerless deployment model.
Source: Home | Dropwizard… read the rest.
Excited to get introduced to Actor model architecture in Akka. Per Dzone survey 9% of technology stacks being used today are based on Akka.
… read the rest.Akka is a toolkit and runtime
for building highly concurrent,
distributed, and resilient
message-driven applications
on
I took up Adobe Experience Manager (AEM) 6.0 Architect certification (9A0-385) recently. I thought to jot down few pointers for my fellow enthusiasts aspiring for passing this exam. You may find this post useful. Please post your question as comment … read the rest.
If you ever want to create an unique identifier for a node in JCR, you would’ve to add a mixin type [mix:referenceable] to it. Once you add this mixin, repository creates a UUID (Unique Idnetifier) for the node automatically.
You … read the rest.
Java still going strong hitting top spot in programming language popularity index even after 20 years of its existence.
In a publish farm setup, if there is a need for Closed User Group (CUG) access for protected pages, we would’ve to setup sticky connection in load balancer.
AEM 6.1 introduces a new authentication mechanism using cryptographic token which would … read the rest.
AEM 6.1 introduces a run mode ‘nosamplecontent’ which address few security configurations required for production instance. This may not get your production instance 100% secure. You are still asked to use the security checklist to keep a check on known … read the rest.
I was trying to understand the event handling reactor pattern from POSA2 for a while.
Here’s one good material I bumped on which explains this pattern pretty well with the help of java nio.… read the rest.
Clearly, Adobe moving towards touch UI across marketing cloud solutions to provide an unified experience. However, classic UI is going to stay.
Quote from Adobe doc –
… read the rest.Adobe has not announced that the classic UI is deprecated in 6.1; and
MongoMK (realized through MongoDB) was introduced to address the need of scaling author nodes horizontally. General notion is that a typical author node supports 30 concurrent users. What if there is more than 30 concurrent users when a single machine’s … read the rest.
AEM was made for traditional one way websites. With Web 2.0, there was question of how AEM suits user generated content as it’s replication concept to share data across publish farm was the bottleneck. AEM trying to meet this gap … read the rest.
In AEM 6.x, binaries are by default chuncked and stored in the Node data store – Segment (TarMK) or Document (MongoMK). Options provided to store binary data (>4kb) in a separate data store – file system or S3 bucket. Separate … read the rest.
Source: adobe.com… read the rest.
AEM materials esp. for developers and architects.
Technical Context
In AEM (CQ), sevlets are defined as OSGi services implementing javax.servlet.Servlet
interface. A service listener org.apache.sling.servlets.resolver.internal.SlingServletResolver
in sling framework listens for OSGi services implementing javax.servlet.Servlet
interface and registers its reference. When a request hits the server, this SlingServletResolver
… read the rest.
In OSGi deployment model for java, bundles come and go at run time. Hence, dependencies between the bundles would have to be resolved at run time. This would lead to inconsistency as programs cannot be written with confidence referring types … read the rest.
OSGi
OSGi is a specification describing dynamic modular system for java platform. Essentially, two key aspects here – dynamic modules called bundles in OSGi and the OSGi runtime facilitating these bundles.
More details on OSGi can be found here.… read the rest.