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

article thumbnail
5 Steps to Strengthen API Security
API misconfigurations and the attacks they attract occur more regularly than you might anticipate. Strengthen your API security using these best practices.
Updated May 19, 2022
by Tim Mackey
· 11,052 Views · 12 Likes
article thumbnail
Build a Twitter Leaderboard App with Redis and AWS Lambda (Part 1)
Learn step by step how to build a Twitter leaderboard app with Redis and AWS lambda.
Updated May 19, 2022
by Abhishek Gupta DZone Core CORE
· 35,701 Views · 3 Likes
article thumbnail
Top 11 Cloud Platforms for Internet of Things (IoT)
Looking over the top 11 cloud platforms for Internet of Things (IoT), we highlight the importance of scalability, cost, and connectivity. Click here for more.
Updated May 19, 2022
by Diksha Rana
· 179,134 Views · 11 Likes
article thumbnail
Add Material-UI Table In ReactJS Application
Take a look at how you can use React.js to make a Material-UI in React applications.
Updated May 18, 2022
by Sanwar Ranwa DZone Core CORE
· 27,683 Views · 5 Likes
article thumbnail
Creating a Spring Boot Project With Eclipse and Maven
In this article, we look at three options for creating Spring Boot projects with Maven and Eclipse: using Spring Initializr, using the STS plugin, and doing it manually.
Updated May 18, 2022
by Ranga Karanam
· 484,614 Views · 19 Likes
article thumbnail
How to Give Props Default Values in Vue
Props are ubiquitous in Vue, so let's look at how to give them default values.
May 18, 2022
by Johnny Simpson
· 7,666 Views · 2 Likes
article thumbnail
Debugging the Java Message Service (JMS) API Using Lightrun
Due to their asynchronous nature and production complexities, debugging messaging systems has typically been remarkably hard.
May 18, 2022
by Shai Almog DZone Core CORE
· 4,702 Views · 4 Likes
article thumbnail
Implementing One and Two Way SSL (Mutual Authentication) for MuleSoft Application
In this article, we will be going to learn how to set up the one-way SSL and two-way SSL for MuleSoft applications.
Updated May 17, 2022
by Jitendra Bafna
· 99,924 Views · 8 Likes
article thumbnail
Creating a REST Web Service With Java and Spring (Part 1)
In the first part of this series, we take a look at how the design of the web service we'll be creating, and the tech we'll be using to there.
Updated May 17, 2022
by Justin Albano DZone Core CORE
· 441,586 Views · 78 Likes
article thumbnail
Checklist for API Verification
These days where Applications talk to each other using API, the verification of any message between the applications/microservices needs to be verified. This checklist includes some best practices for API verification.
Updated May 17, 2022
by vikram upadhya
· 14,019 Views · 12 Likes
article thumbnail
StackPod Episode: Best Practices for AWS Observability With Russell Foster of StackState
When you are running apps in cloud environments like AWS, some observability challenges pop up. In this podcast, learn about some of those challenges.
May 17, 2022
by Annerieke Kortier
· 3,211 Views · 1 Like
article thumbnail
Top Six Kubernetes Best Practices for Fleet Management
Many enterprises are struggling to keep up with a rapidly growing number of Kubernetes clusters spread across on-prem, cloud, and edge locations.
Updated May 16, 2022
by Kyle Hunter
· 5,959 Views · 2 Likes
article thumbnail
Use Lambda Function URL To Write a Serverless App Backed by DynamoDB
This is a Go Lambda function that's packaged and deployed using AWS SAM.
Updated May 13, 2022
by Abhishek Gupta DZone Core CORE
· 40,020 Views · 5 Likes
article thumbnail
Modernize Legacy Code in Production: Rebuild Your Airplane Midflight Without Crashing
Rewriting apps is easy. Doing it while preserving compatibility...that's a bit hard. Doing it live in production? That's the big challenge!
May 13, 2022
by Shai Almog DZone Core CORE
· 6,941 Views · 6 Likes
article thumbnail
Debugging Deadlocks and Race Conditions
Threading issues are a piece of cake with these simple debugger techniques. Yes, you CAN debug threads with breakpoints, when using the right type!
May 12, 2022
by Shai Almog DZone Core CORE
· 6,887 Views · 7 Likes
article thumbnail
Choosing Between GraphQL Vs REST
GraphQL is a query language standard, whereas REST is an architectural idea for network-based computing.server.
May 11, 2022
by Tetiana Stoyko
· 5,301 Views · 4 Likes
article thumbnail
Exporting and Importing Projects in Eclipse
I admit that I have (a few? or not so few) bad habits: one of them is that usually, I find a way to do things, and if that works, I stick with it. I know that there are other ways to do things, but hey, why bother? and sometimes a good friend asks an excellent question (are there any bad questions?), and this lets me review the way I’m doing things. and here is such a thing: exporting and importing projects in eclipse. Archive Files With Drag & Drop Here is how I usually move or copy a project to another machine: Find the project place on my hard disk. an easy way is to select the project folder and use the context menu with show in windows explorer Zip that projects into an archive file Delete from that archive file any derived resources (see dissection of mcu10 projects ), as well as remove all the version control information. Copy the archive file into the destination workspace and unzip it there Then drag&drop that folder into eclipse: this will import that project into the workspace. Instead of the folder I simply can drag&drop as well the .project file note: best if i drag&drop the project into the ‘codewarrior projects’ view. this will not work if i drop it into the processor expert ‘project panel’ view. well, that works, and I really get used to that process. so why bother? because there is actually a better way: to export and import. The Export and Import Way 1. Select one or more project and use the ‘export’ context menu or file > export. Here select general > archive file: export project as archive file 2. In the ext dialog, you can deselect files and folder. additionally, you need to specify the archive file. You could use filter types (e.g. to include *.c and *.h). I really wish that this dialog would consider the ‘derived’ flags for files and folder, so I could deselect them easier. archive file settings 3. In the destination workspace, use the menu file > import : import dialog to import a project and here is the stumbling point: Do not (!) select ‘archive file’, but ‘ existing projects into workspace ‘. I have exported it as archive file, but importing an archive file is importing an archive file inside a project , not (!) as a project . This is a usability quirk in eclipse. 4. In the next dialog, you can choose the archive file and make adjustments which project you want to import. Note that it will automatically copy the projects into my workspace. import archive projects 5. Click finish, and the projects get imported. Summary I'm using combinations of both ways: the archive file produced by the export is not different from an archive file I create with my winzip archive utility (or any other tool like this one). for both export ways, I need to manually remove what I do not want in the archive file. I wish there would be better support for this. but for importing projects the import functionality is really good, as it avoids the copy/extract/drag&drop way: I can go through two dialogs, and that’s it. happy export-import ps: thanks to mark ruthenbeck having me considering more the export/import way!
May 10, 2022
by Erich Styger
· 153,507 Views · 8 Likes
article thumbnail
How to Configure Git in Eclipse IDE
Let's get Git configured in Eclipse so you can import and perform operations on repos within your IDE.
Updated May 10, 2022
by Vishwas Sampath
· 46,848 Views · 5 Likes
article thumbnail
Comparing Akka Streams, Kafka Streams and Spark Streaming
We'll discuss the pros and cons of the frameworks and which to use when.
Updated May 9, 2022
by Daniel Ciocirlan
· 23,659 Views · 3 Likes
article thumbnail
OPC-UA, MQTT, and Apache Kafka: The Trinity of Data Streaming in IoT
Learn about Apache Kafka, MQTT, and OPC-UA for data streaming in IoT and Industry 4.0, including architectures, comparisons, and examples from Audi and BMW.
May 9, 2022
by Kai Wähner DZone Core CORE
· 10,899 Views · 10 Likes
  • Previous
  • ...
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • ...
  • 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
×