This week’s task is to implement binary search in Java, you need to write both iterative and recursive binary search algorithm . In comput…
Category: dummyCategory
OpenID Connect in the Payara Platform 5.183
OpenID Connect is a security mechanism for an application to contact an identity service, verify the identity of the End-User based, and obtain End-User information using REST API’s in a secure way.
JDK 12 News (13 September 2018)
With General Availability of JDK 11 planned for later this month (25 September 2018), it’s a good ti…
Java: Streaming a JDBC ResultSet as JSON
This post shows how you can convert a java.sql.ResultSet to JSON and stream it back to the caller. T…
Meaning of lambda () -> { } in Java
I am looking at the following Stack Overflow answer:How to change Spring's @Scheduled fixedDelay at runtimeAnd in the code there is the following line:schedulerFuture = taskScheduler.sched…
Java String intern() method example – HowToDoInJava
The Java String intern() return the reference of a equal string literal present in string pool. String literals are automaically interned in Java.
EclipseCon Europe 2018 | EclipseCon Europe 2018
Conference for the Eclipse Ecosystem | October 23 – 25, 2018 | Ludwigsburg, Germany
eclipse-ee4j/jakartaee-tck
Jakartaee-tck. Contribute to eclipse-ee4j/jakartaee-tck development by creating an account on GitHub.
Java Testing Weekly 38 / 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 On Writing Beautiful Tests a comprehensive blog post that helps you to write beautiful tests. I don’t agree with every advice given by this blog post, but I still think that this post is worth reading. What’s New in JUnit 5.3 is a practical blog post that provides an introduction to the new features of JUnit 5.3. The Really Valuable Stuff A message to recruiters for automation testers is an excellent blog post which argues that automated tests cannot fulfill all your testing needs. Devs Leading the Testing I Do is a basically a rant that explains why developers shouldn’t try to postpone testing by treating it as a separate task (and not a part of the implementation). Tips for programmers who want
Payara for Beginners – Payara ServerをEclipse IDEに追加する
If you are creating a Java EE project, it is important to have a server defined in Eclipse so you can easily test your applications from the IDE.
Microservices for Java Developers: The Java / JVM Landscape
1. IntroductionIn the previous part of the tutorial we have covered a broad range of communication…
3 Best Practices Java Programmers Can Learn From Spring Framework
There is no doubt that Spring Framework is one of the most popular Java frameworks and makes it really easy to create real-world, enterpris…
A Guide to OptaPlanner | Baeldung
An introduction to the OptaPlanner library with a basic example of optimizing resource planning
How to initialize ArrayList in Java – HowToDoInJava
The Java ArrayList can be initialized in number of ways depending on the requirement. Learn to initialize ArrayList based on some frequently seen usecases.