Helical Insight Inheritance by Borrowing a Constructor JavaScript By Nikhilesh Inheritance by borrowing a constructor will allow us to call a function and then pass an object that the function should bind to this value. So, for the sake of inheritance purpose, the child constructor calls the parent's constructor and...
Java JAX-RS and Jersey api By Somen Sarkar JAX-RS & jersey JSR 311 defines REST support in java. JAX-RS uses annotations to define the REST in java classes. What is Jersey? Jersey provieds api/library for JSR 311. We can use it in implementing Restful webservices in a Java...
Databases Batch Updation in Hibernate By Nikhilesh Batch Updation in Hibernate JDBC has long been offering support for DML statement batching. By default, all statements are sent one after the other, each one in a separate network round-trip. Batching allows us to send multiple statements in one-shot,...
Databases Batch Insertion in Hibernate By Nikhilesh Batch-Insertion in Hibernate To enable batch-processing to upload a large number of records into your database using Hibernate. If you are undertaking batch processing you will need to enable the use of JDBC batching. This is absolutely essential if...
Java POSIX Thread Programming By admin POSIX Thread Programming What is Thread: A thread is defined as an independent stream of instructions that can be scheduled to run as such by the...
Java Java Policy File By Nikhilesh JAVA POLICY FILE The Java™ 2 Platform, Enterprise Edition (J2EE) Version 1.3 and later specifications have a well-defined programming model...
Java Finding all the Back-Edges in an Un-Directed Graph By Nikhilesh Finding all the backedges in an undirected graph Finding cycles in a graph is an interesting problem. We say that a cycle is formed if there is a way to reach the source without visiting already visited vertices. In this...
Java Getters and Setters of JavaScript for a Java Programmer By Nikhilesh Getters and Setters of JavaScript for a Java Programmer In this blog article I will discuss about an important feature of JavaScript - property Getters and Setters. Getters and Setters help you to achieve data encapsulation. The write up is...
Java JavaScript Inheritance Explained By Nikhilesh In this blog article, I will discuss about the JavaScript inheritance as it is one of the non-trivial concepts especially to a Java Programmer. As Douglas Crockford says it is really the world's most misunderstood programming language though very powerful....
Java Injecting javaScript into webview By Nikhilesh Injecting javaScript into webview We all know webview is used to show html content within your application.Some time we need to inject javascript into webview through native functionality of android. In this tutorial I am enabling a javascript function using...
Java Sending Mail Using JavaMail API By admin Here, we are going to see how to send mail using JAVA MAIL API. First, you need mail.jar in your project. If you have, copied it otherwise you can download. Here are few notes, when you are going to create...