Enterprise Java
-
Spring MVC REST
Representational state transfer (REST) is an architectural style that describes best practices to expose web services over HTTP, emphasizing performance,…
Read More » -
Spring Boot for war
Spring Boot supports the following embedded servlet containers: Tomcat Jetty Undertow You can use Maven, Gradle, or Ant/Ivy as build…
Read More » -
Appium vs Selenium – Architecture, Functionality, Applications, and Everything in Between
It’s perhaps difficult to remember life before smartphones. Today, mobile phones have transformed dramatically to become the information and communication…
Read More » -
Migrating to Jakarta EE 9
Jakarta EE 9 is out, and with it the namespace change from javax.* to jakarta.*. When we talk about the…
Read More » -
AWS SDK 2 for Java and storing a Json in DynamoDB
AWS DynamoDB is described as a NoSQL key-value and a document database. In my work I mostly use the key-value…
Read More » -
Processing real-time data with Storm, Kafka and ElasticSearch – Part 3
This is the third part of the article series: Processing real-time data with Storm, Kafka, and ElasticSearch. 1. Introduction In…
Read More » -
Parameterized Tests in JUnit 5
A parameterized test allows you to run a test against a varying set of data. If you find yourself calling…
Read More » -
All Your Tests Belong to You: Maintaining Mixed JUnit 4/JUnit 5 and Testng/JUnit 5 Test Suites
If you are seasoned Java developer who practices test-driven development (hopefully, everyone does it), it is very likely JUnit 4…
Read More » -
Spring Web MVC
Spring MVC is a web framework based on the model–view–controller pattern. It is based on the Spring principles and supports…
Read More »