Concurrency handling - Java vs Erlang

Some may say that you cant compare apples and oranges. That's true. (apples and oranges in here being Java and Erlang. From your preference pick which is which). But we can certainly put them into a salad, separately and compare the final taste. Lets set some goals here. The main goal here is not to compare Java vs Erlang. It will be a separate issue and will need a separate approach. The goal...
Share:

Internals of Java Virtual Machine

The purpose of the JVM is to load .class files and execute those .class files. Lets say you have a A.java source file. You can compile A.java  with javac utility provided by JDK/JRE. Now you get A.class (may be multiple .class files depending on your A.java inclusions). A.class is a bytecode...
Share:

Spring MVC - DispatcherServlet configuration needs to include a HandlerAdapter that supports this handler

This is full exception thrown from the server. javax.servlet.ServletException: No adapter for handler [Class name] The DispatcherServlet configuration needs to include a HandlerAdapter  that supports this handler Problem Overview This is took me a while to figure this out...
Share:

JSP FAQs

What is a JSP ? JavaServer Pages (JSP) is a technology that helps software developers create dynamically generated web pages based onHTML, XML, or other document types. Basically it is html file with JAVA logic inside it with the extension of .jsp .jsp  files (html + java code) = .php (html + php code) = .xhtml in .net (html + C# code or razor syntax) How JAVA logic is inserted inside...
Share:

Java Servlets FAQs

What is a servlet ? Simply it means something that can extend a servers functionality. (for example a servlet can be used to process DB queries or client request processing ) So servelts run in a server just like PHP and ASP.net and normally serverlets are deployed in a web container. So there...
Share:

Build with Gradle

Recently one of my friends asked me to explain what a build tool is and what is Gradle. So I thought of explaining it here and go much as further as I can go smoothly and neatly. What is a software build ? You write code for an application. Those are the source codes. Lets say its an android...
Share: