DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

The Latest DevOps and CI/CD Topics

article thumbnail
Azure DevOps vs. AWS DevOps: Comparing Two Powerhouses in Cloud Development and Operations
Discover the differences between Azure DevOps and AWS DevOps. Learn how our expert consulting services can enhance your software development process.
October 23, 2023
by Pritesh Patel
· 3,291 Views · 4 Likes
article thumbnail
Deploying To Azure From Azure DevOps Without Secrets
Optimize Azure deployment using Workload Identity Federation for automated, secure, seamless CI/CD in DevOps without secret credentials.
October 23, 2023
by Alexandre Nedelec
· 2,751 Views · 1 Like
article thumbnail
Kubernetes Is Everywhere [Comic]
Find out what Gramma's been cooking in this latest comic from Daniel Stori, featured in the DZone 2023 Kubernetes in the Enterprise Trend Report.
October 23, 2023
by Daniel Stori DZone Core CORE
· 6,774 Views · 8 Likes
article thumbnail
Canary Release: A Strategy for Seamless Software Deployments
In this article, we will explore the concept of canary releases, their benefits, and best practices for implementing them.
October 21, 2023
by Aditya Bhuyan
· 5,332 Views · 2 Likes
article thumbnail
How Can DevSecOps Improve Agility and Security in Manufacturing Operations?
DevSecOps practices can enhance agility and security in manufacturing operations, ensuring efficient and safe production processes.
October 21, 2023
by Devin Partida
· 5,035 Views · 1 Like
article thumbnail
Kubernetes Today: The Growing Role of Serverless in Modern Kubernetes Clusters
Delve into the serverless trend advantages and highlight key open-source solutions that bridge the gap between serverless and Kubernetes.
October 20, 2023
by Gal Cohen
· 6,980 Views · 5 Likes
article thumbnail
Embracing Resilience: The Power of Chaos Engineering
This article explores the concept of chaos engineering, its principles, benefits, and how it is transforming the way modern businesses.
October 20, 2023
by Aditya Bhuyan
· 5,477 Views · 2 Likes
article thumbnail
Composite Container Patterns in K8S From a Developer's Perspective
The goal of this article is to present 3 popular extensibility architectural patterns from a developer's perspective using well-known programming principles.
October 20, 2023
by Daniela Kolarova DZone Core CORE
· 6,235 Views · 3 Likes
article thumbnail
Scaling Up With Kubernetes: Cloud-Native Architecture for Modern Applications
Explore the world of containers and microservices in K8s-based systems and how they enable the building, deployment, and management of cloud-native applications at scale.
October 20, 2023
by Saurabh Dashora DZone Core CORE
· 8,108 Views · 6 Likes
article thumbnail
The State of Kubernetes: Self-Managed vs. Managed Platforms
Look at the current state of managed Kubernetes offerings as well as options for self-managed clusters. Discuss the pros and cons as well as recommendations.
October 20, 2023
by Yitaek Hwang DZone Core CORE
· 13,071 Views · 5 Likes
article thumbnail
Demystifying API-Driven Application Integration: A Pragmatic Approach
Dive into the evolution of API-based integration, emphasizing API-first strategies, security, and asynchronous communication.
October 18, 2023
by Elsie Tyler
· 4,758 Views · 2 Likes
article thumbnail
Exploring CI/CD Lead Time Dynamics
This article provides a gateway to unlocking all the factors that affect continuous integration and continuous deployment (CI/CD) lead time.
October 17, 2023
by Ruchita Varma
· 3,325 Views · 1 Like
article thumbnail
Avoid Merge Conflicts, Don't Manage Them
Just as sweeping up the glass after an accident doesn't make you a responsible driver, managing your merge conflicts doesn't make you a responsible developer.
October 17, 2023
by Jonathan Hall
· 7,136 Views · 6 Likes
article thumbnail
Kafka Event Streaming AI and Automation
Explore how to use ChatGPT to create an IoT Kafka event consumer and API Logic Server to logic to produce temperature reading events outside a defined range.
October 17, 2023
by Tyler Band
· 29,189 Views · 8 Likes
article thumbnail
Enhanced Security for Your Secrets With AWS Secrets Manager
AWS Secrets Manager secures credentials with encryption and access controls while providing robust protection against threats.
October 17, 2023
by Raghava Dittakavi DZone Core CORE
· 5,264 Views · 3 Likes
article thumbnail
Future Trends in Data Integration
Exploring the future of data integration, from cloud solutions and real-time analytics to machine learning. Adaptability is key in this evolving landscape.
October 17, 2023
by Jeffrey Faber
· 3,662 Views · 3 Likes
article thumbnail
The Impact of IoT on Data Integration: A Transformational Journey
IoT's impact on data integration is profound, driving shifts in storage methods, real-time processing, and architectural paradigms.
October 17, 2023
by Ralph Burgess
· 3,375 Views · 1 Like
article thumbnail
What is a Servlet Container?
In this post, I write a little bit about the basic ideas of web server, Servlet container and its relation with JVM. I want to show that Servlet container is nothing more than a Java program. 1. What is a Web Server? To know what is a Servlet container, we need to know what is a Web Server first A web server uses HTTP protocol to transfer data. In a simple situation, a user type in a URL (e.g. www.programcreek.com/static.html) in browser (a client), and get a web page to read. So what the server does is sending a web page to the client. The transformation is in HTTP protocol which specifies the format of request and response message. 2. What is a Servlet Container? As we see here, the user/client can only request static webpage from the server. This is not good enough, if the user wants to read the web page based on his input. The basic idea of Servlet container is using Java to dynamically generate the web page on the server side. So servlet container is essentially a part of a web server that interacts with the servlets. Servlet container is the container for Servlets. 3. What is a Servlet? Servlet is an interface defined in javax.servlet package. It declares three essential methods for the life cycle of a servlet – init(), service(), and destroy(). They are implemented by every servlet(defined in SDK or self-defined) and are invoked at specific times by the server. The init() method is invoked during initialization stage of the servlet life cycle. It is passed an object implementing the javax.servlet.ServletConfig interface, which allows the servlet to access initialization parameters from the web application. The service() method is invoked upon each request after its initialization. Each request is serviced in its own separate thread. The web container calls the service() method of the servlet for every request. The service() method determines the kind of request being made and dispatches it to an appropriate method to handle the request. The destroy() method is invoked when the servlet object should be destroyed. It releases the resources being held. From the life cycle of a servlet object, we can see that servlet classes are loaded to container by class loader dynamically. Each request is in its own thread, and a servlet object can serve multiple threads at the same time(thread not safe). When it is no longer being used, it should be garbage collected by JVM. Like any Java program, the servlet runs within a JVM. To handle the complexity of HTTP requests, the servlet container comes in. The servlet container is responsible for servlets’ creation, execution and destruction. 4. How Servlet container and web server process a request? Web server receives HTTP request Web server forwards the request to servlet container The servlet is dynamically retrieved and loaded into the address space of the container, if it is not in the container. The container invokes the init() method of the servlet for initialization(invoked once when the servlet is loaded first time) The container invokes the service() method of the servlet to process the HTTP request, i.e., read data in the request and formulate a response. The servlet remains in the container’s address space and can process other HTTP requests. Web server return the dynamically generated results to the correct location The six steps are marked on the following diagram: 5. The role of JVM Using servlets allows the JVM to handle each request within a separate Java thread, and this is one of the key advantage of Servlet container. Each servlet is a Java class with special elements responding to HTTP requests. The main function of Servlet contain is to forward requests to correct servlet for processing, and return the dynamically generated results to the correct location after the JVM has processed them. In most cases servlet container runs in a single JVM, but there are solutions when container need multiple JVMs.
October 16, 2023
by Ryan Wang
· 165,789 Views · 34 Likes
article thumbnail
SAML SSO In Terms Of GitHub Security
This post sheds light on what SAML SSO is, what benefits it brings to the organization, and how secure it is for your GitHub environment.
October 16, 2023
by Daria Kulikova
· 3,328 Views · 2 Likes
article thumbnail
AWS Lambda Pricing for a Serverless Application
In this blog post, we’ll briefly compare AWS Lambda Pricing with other Cloud providers and discuss the key elements of the AWS Lambda pricing model.
October 16, 2023
by Rahul Shivalkar
· 4,183 Views · 1 Like
  • Previous
  • ...
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • ...
  • Next
  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook
×