How memory is managed in java? A: Memory model is common to handle in all languages.It basically defines the possible scenarios and rules that govern multiple threads in a system.In java a memory management model determines if an execution trace…
Spring Tutorial – Microservice with Spring Boot framework
Overview: The concept of Microservices is being widely put into practice across enterprises. Compared to the monolithic IT systems, Microservices offer more benefits and help overcome the limitations of the monolithic systems, especially in the context of modern-day needs of…
Spring Tutorial – JPA (Java persistence API) with spring framework
Overview The Object Relational Mapping (ORM) concept is much-favoured these days because of the relative advantages it offers over relational database systems. ORM makes managing database a simpler task than do relational database systems. Enterprises want to spend as less…
Free IDEs for Java Coding – Let’s Explore
Overview Java is one of the main programming languages. Generally utilized for creating secure and robust desktop applications, mobile applications, business applications, and web applications. Each Java developer needs a programming editor or IDE that can help with the grungier…
Learn Regular Expressions in Java
Overview: Java provides regular expression packages that are useful for software developers and testers alike. Java regular expressions are varied, versatile and allow developers to define string patterns that can be used to search, edit or manipulate text. The java.util.regex…
Steps to work with Java Persistence API?
Overview: The JPA, or the Java Persistence API, is a special specification which defines how different Java objects or classes access and interact with the data in a Java database. It is one of the many approaches to ORM (Object…
Steps to work with Java generics?
Overview: The newest version of Java 8 SE has held the world by storm. It boasts of its new programming capabilities and features. Overall, it claims that it actually could decrease the work of its users and enhance the quality…
Java vs. Python: Which is the language for the future?
Overview: Python is more gainful language than Java. Python is a deciphered language with rich language structure and makes it a decent choice for scripting and quick application improvement in numerous zones. Python is a powerfully composed programming language where…
Steps to schedule tasks using Spring framework
Overview Task scheduling and asynchronous execution is an important feature of any framework or programming languages. Java has multiple implementation of thread pools, concurrent processing and execution. Spring framework is one of the most popular open source framework in the…
Wiring Spring Beans by using XML and Java
Overview Wiring of Spring beans is one of the principal factors underlying the smooth operation of Spring-based software applications. The wiring feature combines the capabilities of disparate Spring beans or objects to achieve a common goal. The beans are wired…
Play framework and Java – How to create web applications?
Overview: Play is an open source Java based web application development framework. The framework has been written in Scala with a Java wrapper API. It follows MVC (Model-View-Controller) architectural model and RESTful architecture. The main focus of Play framework is…
Implementing AOP using Spring framework
Overview The Aspect Oriented Programming (AOP) offers a new way of looking at how software programming can be done. When compared to the Object Oriented Programming (OOP), the AOP does not represent a total or drastic departure to how programming…
JSON data and Java – How it works?
Overview: JSON, which is the abbreviation of JavaScript Object Notation, is a text-based data exchange format that is used in web applications and for server responses. JSON happens to be a lot more compact and lighter when compared to XML.…