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…
Best IDEs for Java Application Development
Overview The version of Java was first released in 1996 to make your development process easier when you’re planning to build an application that offers best features and various Java ides then it is important to remember Java. It is…
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…
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…
How to code a Spring MVC application?
Overview: In the present era of web application development, there are plenty of Model-View-Controller frameworks for Java. Most of these frameworks also integrate with Spring. However, the best of such integrations happen with Spring’s very own module for MVC. As…
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.…
Implementing Filters in a JSP application
Overview: JSP has a special feature which introduces the concept of filters. The work of these filters is to intercept any request en route to the JSP or the Java servlet. It can also modify to update the response of…
Exception Handling Using Struts 2
Overview: Exceptions are a part of all types of processing both in software and hardware applications. Though most of the exceptions are identified and addressed there may be exceptions that are unidentified and not interpreted. Struts 2 provides effective ways…
Creating RESTful web service in Java
Overview RESTful web services have changed how roles such as developers and system integrators work. Developers needed a service that allows systems to exchange information seamlessly; is extensible, scalable and easily maintainable. The Representational State Transfer or REST approach is…