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 Popular Topics

article thumbnail
Learn How To Use DynamoDB Streams With AWS Lambda and Go
This blog post will help you get quickly started with DynamoDB Streams and AWS Lambda using Go. It will cover how to deploy the entire solution using AWS CDK.
July 21, 2022
by Abhishek Gupta DZone Core CORE
· 35,138 Views · 4 Likes
article thumbnail
Top 13 Mobile App Development Platforms You Need
There are just so many new app development platforms in the market. Here is a list of 13 mobile app development platforms that you need to know about.
July 21, 2022
by Milap Chavda
· 5,340 Views · 2 Likes
article thumbnail
Creating Routes in KoaJS
Learn how to create dynamic routes using KoaJS Route Parameters.
July 20, 2022
by Saurabh Dashora DZone Core CORE
· 9,638 Views · 3 Likes
article thumbnail
Writing Indexes in Java by Using Right Collection
The author explains the main idea of indexes and how to create them in Java. Creating fast search using the right data structures.
July 19, 2022
by Dmitry Egorov DZone Core CORE
· 7,695 Views · 5 Likes
article thumbnail
Why Building an External Data Product Is So Hard
Developing an external data product is different and, let's face it, more complex than serving internal customers.
Updated July 19, 2022
by Lior Gavish
· 4,515 Views · 3 Likes
article thumbnail
What Is Text Classification?
Text Classification is the process of categorizing text into one or more different classes. Learn how to develop a Text Classification Deep Learning Algorithm.
July 19, 2022
by Kevin Vu
· 6,577 Views · 1 Like
article thumbnail
Explore Deep in 4.6 Billion GitHub Events
Understand any GitHub project or quickly compare any two projects by digging deep into 4.6 billion GitHub events in real-time. Here are some ways you can play with it.
July 18, 2022
by Max Liu
· 3,101 Views · 2 Likes
article thumbnail
Questions Developers Should Consider Asking Potential Employers
If you are looking for a guideline on how to find a good employer, these questions may be a good place to start.
July 18, 2022
by Bartłomiej Żyliński DZone Core CORE
· 4,573 Views · 3 Likes
article thumbnail
Required Capabilities in Self-Navigating Vehicle-Processing Architectures
This article introduces the software algorithms used in self-navigating vehicle processing architectures and covers critical safety-related requirements.
July 18, 2022
by Jim Ledin
· 6,858 Views · 2 Likes
article thumbnail
Using JavaScript Logic Statements to Make Decisions in Your Code
This article will explore how logic statements empower your code to respond flexibly when provided with different inputs.
Updated July 18, 2022
by Laurence Svekis
· 2,227 Views · 4 Likes
article thumbnail
Machine Learning and Data Science With Kafka in Healthcare
Machine Learning and Data Science with Apache Kafka in the healthcare industry exploring deployments from the CDC (Covid), Cerner (sepsis), and Celmatix (EMRs).
July 16, 2022
by Kai Wähner DZone Core CORE
· 7,894 Views · 3 Likes
article thumbnail
Introduction to Spring Boot and JDBCTemplate: JDBC Template
This tutorial will cover a way to simplify the code with JDBC using the Spring JDBC Template.
Updated July 15, 2022
by Otavio Santana DZone Core CORE
· 59,885 Views · 3 Likes
article thumbnail
Getting Started With Vaadin in Spring and Java EE
If you're thinking of using Vaadin for your UI components, here are some resources, including two videos, to see how you can incorporate it into both Spring and Java EE.
Updated July 14, 2022
by Alejandro Duarte DZone Core CORE
· 13,555 Views · 9 Likes
article thumbnail
Groovy 4.0: These 10 New Features Make It AWESOME!
Sealed types, switch expressions, and record types. Here are just a few new features introduced in the latest Groovy 4.0 release. In this article, I want to show you ten things that make Groovy 4.0 amazing.
July 14, 2022
by Szymon Stepniak
· 7,593 Views · 6 Likes
article thumbnail
How To Perform OCR on a Photograph of a Receipt Using Java
Learn of challenges associated with processing physical receipts for digital expensing operations and discover an OCR API solution to alleviate the problem.
July 14, 2022
by Brian O'Neill DZone Core CORE
· 6,653 Views · 4 Likes
article thumbnail
Learning About the Headers Used for gRPC Over HTTP/2
In this article, we take a look some next-generation HTTP headers available for integration developers to use when designing APIs.
Updated July 13, 2022
by Kin Lane
· 47,221 Views · 4 Likes
article thumbnail
Building a REST Service That Collects HTML Form Data Using Netbeans, Jersey, Apache Tomcat, and Java
The Jersey project is very well documented so it makes it easy to learn REST with Java. In this article I’m going to build two projects. The first project will be a very simple HTML page that presents a form to the user and then submits it to a REST project residing on the same server. The second project will be the REST part. For this article I used the following tools: 1. Netbeans 7 2. Apache Tomcat 7 3. Jersey 4. Java I built this on OS X Lion. Go ahead and create a new Maven Web Application with Netbeans 7 called: MyForm Once the project has been generated take the resulting (default) index.jsp file and delete it. In its place add a file called: index.html and add the following content to it: Name: Message: Item 1: Item 2: Basically, I created a simple (ugly) form that takes a few parameters the user enters. They submit the form and the data is sent to the REST project we will soon be building. The idea here is we are using an HTTP POST to create a new message. That’s it for the first project! With Netbean’s Maven integration do a Clean and Build and then deploy the resulting WAR file to Apache Tomcat. Create another new Maven Web Application with Netbeans 7 called: RESTwithForms Add two new Java classes to the new project: 1. MyApplication 2. MessageResource The code for MyApplication.java is as follows: package com.giantflyingsaucer; import com.sun.jersey.api.core.PackagesResourceConfig; import javax.ws.rs.ApplicationPath; @ApplicationPath("/") public class MyApplication extends PackagesResourceConfig { public MyApplication() { super("com.giantflyingsaucer"); } } In a brief nutshell this code allows us to make use of some Servlet 3.0 goodies (we don’t need to create a web.xml file for this project as an example). For more details see the sections titled: Example 2.8. Reusing Jersey implementation in your custom application model and Example 2.9. Deployment of a JAX-RS application using @ApplicationPath with Servlet 3.0 at this link. The real guts of the REST project are in the MessageResource.java file as seen below: package com.giantflyingsaucer; import java.net.URI; import java.util.List; import java.util.UUID; import javax.ws.rs.FormParam; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.core.Response; import javax.ws.rs.Consumes; import javax.ws.rs.core.MediaType; @Path("/messages") public class MessageResource { @POST @Consumes(MediaType.APPLICATION_FORM_URLENCODED) public Response createMessage(@FormParam("name") String name, @FormParam("message") String message, @FormParam("thelist") List list) { if(name.trim().length() > 0 && message.trim().length() > 0 && !list.isEmpty()) { // Note 1: Normally you would persist the new message to a datastore // of some sort. I'm going to pretend I've done that and // use a unique id for it that obviously points to nothing in // this case. // Note 2: The way I'm returning the data should be more like the commented // out piece, I am being verbose for the sake of showing you how to // get the values and show that it was read. return Response.created(URI.create("/messages/" + String.valueOf(UUID.randomUUID()))).entity( name+ ": " + message + " --> the items: " + list.get(0) + " - " + list.get(1)).build(); // This is a more real world "return" //return Response.created(URI.create("/messages/" + String.valueOf(UUID.randomUUID()))).build(); } return Response.status(Response.Status.PRECONDITION_FAILED).build(); } } Note: Pay special attention to the comments. Please don’t email me stating I shouldn’t be returning text back with the values, also please don’t tell me I should be iterating the list, etc. this is just a demo. You will obviously do this differently in a production environment. The key here is simplicity and minimal code. At this point you need to add jersey-server as a dependency in your POM file. com.sun.jersey jersey-server-linking 1.9.1 With Netbean’s Maven integration do a Clean and Build and then deploy the resulting WAR file to Apache Tomcat. You are now ready to test it out. Load up the HTML file from the first project and enter some data and then submit it. If you have a tool like FireBug for Firefox, you can also see that an HTTP 201 was returned (if successful). If you don’t enter any data in the form then you should get an HTTP 412 back. With not much more work you could just as easily use something like jQuery and submit the form via AJAX.
July 13, 2022
by Chad Lung
· 66,736 Views · 4 Likes
article thumbnail
Java Thread Programming (Part 2)
After discussing the history of threading and how to initiate/begin a thread, now let's look at an illustration of how to leverage threads to our advantage.
July 12, 2022
by A N M Bazlur Rahman DZone Core CORE
· 6,819 Views · 8 Likes
article thumbnail
Creating Your Own Face Dataset with DatasetGAN and GPUs
Learn the basics of DatasetGAN and how to set up a powerful GPU compute instance in AWS, install prerequisites for DatasetGAN, and more.
July 12, 2022
by Gilad David Maayan
· 8,846 Views · 1 Like
article thumbnail
The State of Kubernetes Stateful Workloads at DreamWorks
Learn how DreamWorks is running 370 databases on 1200+ Kubernetes pods.
July 11, 2022
by Sylvain Kalache
· 5,299 Views · 1 Like
  • Previous
  • ...
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • ...
  • 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
×