development

Using @Transactional with Spring Boot and JPA

When working with databases in a Spring Boot application, its crucial to manage transactions properly. The @Transactional annotation is a powerful tool that simplifies this process. In this article, we ll explore how to use @Transactional with Spring Boot and JPA....


Deleting Elasticsearch Indices By Timestamp

The resource management is the one of the most important thing in software community. Therefore the document was written in order to delete indice which starts with given prefix...


Running the Elasticsearch on Docker

Elasticsearch is the distributed search and analytics engine at the heart of the Elastic Stack. Logstash and Beats facilitate collecting, aggregating, and enriching your data and storing it in Elasticsearch. Kibana enables you to interactively explore, visualize, and share insights into your data and manage and monitor the stack. Elasticsearch is where the indexing, search, and analysis magic happens....


Using PowerMock in Spring JUnit Test

Unit testing with help of a mocking framework has been recognized as a useful practice for a long time and the Mockito framework....