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

Latest Articles - DZone

article thumbnail
The 3 Stages of an Effective Test Data Strategy
Testing is crucial for delivering quality applications quickly, but providing the right test data remains a major bottleneck.
October 17, 2023
by Rich Jordan
· 4,009 Views · 2 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,459 Views · 8 Likes
article thumbnail
BSidesLV: The Big Event Before the Biggest Security Event in Las Vegas
BSides Las Vegas 2023 united security experts and devs. Highlights include PasswordsCon, medical device security, MFA challenges, and updates from CISA.
October 17, 2023
by Dwayne McDaniel
· 2,640 Views · 2 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,288 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,675 Views · 3 Likes
article thumbnail
SQL Data Manipulation Language (DML) Operations: Insert, Update, Delete
This article covers SQL DML operations like insert, update, delete, and more, including drop, distinct, and group by.
October 17, 2023
by Madhuri Hammad
· 18,251 Views · 5 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,400 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,813 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,337 Views · 2 Likes
article thumbnail
Fine Tuning LLM: Parameter Efficient Fine Tuning (PEFT), LoRA and QLoRA: Part 1
In this blog, we will understand the idea behind Parameter Efficient Fine Tuning (PEFT) and explore LoRA and QLoRA, Two of the most important PEFT methods.
October 16, 2023
by A B Vijay Kumar
· 5,529 Views · 2 Likes
article thumbnail
Oracle Outlines Vision for AI and Cloud-Driven Future
Larry Ellison believes generative AI is transformational and details the unique advantages of Oracle Cloud for building enterprise AI apps
October 16, 2023
by Tom Smith DZone Core CORE
· 5,023 Views · 2 Likes
article thumbnail
How Can Low-Code Tools Reduce Cost During Recession
Everyone is anxious about inflation. Even in the IT sector and the field of app development. But how can low-code tools reduce the cost during the recession?
October 16, 2023
by Katie Mikova
· 3,480 Views · 5 Likes
article thumbnail
A Deep Dive Into the Call Chain Relationship Between Presto, Hive, and Alluxio
Understanding how Presto+Hive+Alluxio work together and the flow from SQL query to low-level file system operations is key to tuning performance.
October 16, 2023
by Jiaming Mai
· 2,939 Views · 2 Likes
article thumbnail
How Is Apache APISIX Fast?
Apache APISIX achieves high performance by using etcd for storage, hash tables for storing IP addresses, and radix trees for routing.
October 16, 2023
by Navendu Pottekkat
· 3,657 Views · 2 Likes
article thumbnail
Error Handling in Mule 4.4
In this article, learn what exactly error handling does and how you can apply it to the APIs of MuleSoft.
October 16, 2023
by Amrutha TESR
· 3,677 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,205 Views · 1 Like
article thumbnail
Nebraska.Code() — Developing in the Great Plains
With topics ranging from OSS contribution to getting along with your coworkers to using Azure Key Vault at scale, there was a lot of knowledge shared.
October 16, 2023
by Dwayne McDaniel
· 4,045 Views · 2 Likes
article thumbnail
Unlocking Efficient AuthZ With Cerbos’ Query Plan
Cerbos efficiently handles the majority of access control decisions for standard application requirements. Its query plan handles the most challenging cases.
October 16, 2023
by Aldin Kiselica
· 2,629 Views · 2 Likes
article thumbnail
The Future of AI in Software Development: Trends and Innovations
Explore the ever-changing landscape of AI in software development. Discover emerging trends and innovations shaping the future of coding and programming.
October 16, 2023
by Megha Verma
· 4,567 Views · 2 Likes
article thumbnail
Autoscaling Kubernetes Worker Nodes With Karpenter
How to set up and use Karpenter for autoscaling and collecting underutilized spot and on-demand instances for AWS EKS.
October 16, 2023
by Anadi Misra
· 4,611 Views · 2 Likes
  • Previous
  • ...
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • ...
  • 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
×