View the digital edition of Java Magazine: September/October 2017.
Category: Home
QRebel – Shift performance management left
QRebel helps development teams find, diagnose, and fix application performance issues early in the continuous delivery pipeline. By checking each build for performance regressions during test runs, QRebel uncovers problems before they impact user experience.
Eclipse Java IDE for programmers | Udemy
Make your way trough the most popular Java IDE – Free Course
Why Is Java Great? – DZone Java
This post looks at the most useful aspects of Java, including its platform independence, object orientation, and APIs, making it the most universal language.
20 Java and Programming Quotes to Motivate Yourself
I always have a strong interest in knowing great peoples of my field like software development and programming. Knowing about them, followi…
“Asity is the most suitable toolkit to support server-side Java” – JAXenter
Interview alert: “Asity is the most suitable toolkit to support server-side Java, a lightweight abstraction layer for various web frameworks on the JVM.”
Reverse string in Java using recursion – HowToDoInJava
In this post, we will see a Java program to reverse a string using recursion. Also learn to reverse string without recursion as well. Read More: Reverse words in a string in Java 1. Reverse a sentence in Java using recursion To reverse a string by characters, we can write a recursive function which will …
Reverse words in a string in Java – HowToDoInJava
Learn to reverse each word in a sentence in Java with example. We will reverse the words in string using StringBuilder and StringUtils classes.
Java array contains – arraylist contains example – HowToDoInJava
Learn how to check if an arraylist contains a value in Java with example. Also, learn to check if array contains an element, along with index of element in array. 1. Java ArrayList Contains Example To check if an ArrayList contains an element, use ArrayList.contains(element) method. contains(element) method does not take null argument, and will …
Java Developers: var Is Your Friend • Todd Ginsberg
Clearing up confusion around Local Variable Type Inference
Convert String to Long in Java – HowToDoInJava
3 Java examples to convert String to long value using Long.parseLong(String), Long.valueOf(String) and new Long(String) constructor.
Java Testing Weekly 33 / 2018
There are many software development blogs out there, but many of them don’t publish testing articles on a regular basis. Also, I have noticed that some software developers don’t read blogs written by software testers. That is a shame because I think that we can learn a lot from them. That is why I decided to create a newsletter that shares the best testing articles which I found during the last week. Let’s get started. Technical Stuff How to Test Logging in Java Part Two: Parallel Boogaloo is an interesting blog post that explains how you can write automated tests for logging when you want to run your tests in parallel. Also, you should read the first part of this series as well. JUnit 5 – Dynamic Tests is an excellent blog post that describes how you can specify test cases at runtime with JUnit 5. The Really Valuable Stuff Best practices vs. good practices in software testing is an extremely important blog post that explains why you should use the phrase: “good practices” instead of the phrase: “best practices”. Hindsight lessons about API testing is a thought-provoking post that helps you to write better tests for your REST APIs
Instalando Apache NetBeans 9 con componentes Java EE | Jakarta EE
Trucos, tips, tutoriales.. todo de Java.. y NetBeans
Writing Big JSON Files With Jackson
Sometimes you need to export a lot of data to JSON to a file. Maybe it’s “export all data to JSON”, …