WordPress: How to Add NoFollow Attributes to all Links in a Specific Category
PageRank was invented by Google’s co-founder and current CEO, Larry Page, and it’s one of the determining factors in where pages rank in Google. Google views links to other websites as votes of...
View ArticleWordPress: How to Remove Extra Query Parameters from URLs
In the World Wide Web, a query string is the part of a uniform resource locator (URL) that contains data to be passed to web applications such as PHP/ASP/CGI programs, hence WordPress. A typical URL...
View ArticleHow to Run Multiple Tomcat Instances on One Server?
I’m sure you must have faced one of below question while developing Dynamic Web Project in past. Running multiple Tomcat instances on one server Running Multiple Tomcat Instances on Single Machine java...
View ArticleLimit Login Attempts: Absolutely MUST Have WordPress Plugin
By default WordPress allows unlimited login attempts either through the login page or by sending special cookies. This allows passwords (or hashes) to be brute-force cracked with relative ease. Last...
View ArticleHow to Generate Random Number in Java with Some Variations?
In Java, there is a method random() in theMath class, which returns a double value between 0.0 and 1.0. In the class Random there is a method nextInt(int n) , which returns a random value in the...
View ArticleHow to Generate Out Of Memory (OOM) in Java Programatically
Everyone in java development facejava.lang.OutOfMemoryError now and then, OutOfMemoryError (OOM) in Java is one problem which is more due to system’s limitation (memory) rather than due to...
View ArticleSpring MVC: How to Access ModelMap Values in a JSP?
Do you have one of below questions? How do I access ModelMap in a JSP? My ModelMap is not passing beans to JSP. How can I pass multiple values from Spring Controller to JSP? in JSP how to get multiple...
View ArticleCrunchifyJSONtoHTML.js – JSON to HTML table Converter Script
Recently I came across a requirement in which I have to render JSON data to HTML view in JSP (Basically JSON Array). This is a simple script to convert JSON data to standard HTML table in the simplest...
View ArticleHow to Create RESTful Java Client With Jersey Client – Example
This tutorial show you how to use Jersey client APIs to create a RESTful Java client to perform “GET” requests to REST service that created in this How to build RESTful Service with Java using JAX-RS...
View ArticleHow to Create RESTful Java Client With Java.Net.URL – Example
This tutorial show you how to use Java.Net.URL to create a RESTful Java client to perform “GET” requests to REST service that created in this How to build RESTful Service with Java using JAX-RS and...
View ArticleHow to Create RESTful Java Client using Apache HttpClient – Example
This tutorial show you how to use Apache HttpClient to create a RESTful Java client to perform “GET” requests to REST service that created in this How to build RESTful Service with Java using JAX-RS...
View ArticleHow to Generate Out Of Memory (OOM) in Java Programatically
Everyone in java development facejava.lang.OutOfMemoryError now and then, OutOfMemoryError (OOM) in Java is one problem which is more due to system’s limitation (memory) rather than due to...
View ArticlejQuery: Very Simple Show/Hide Panel on Mouse Click Event
Here’s a simple tutorial on how to show/ hide a div using jQuery. Demo<html> <head> <meta rel="author" href="http://Crunchify.com" content=""> <script type="text/javascript"...
View ArticleSpring MVC: How to Declare a Bean in Spring Application?
Declaring a bean In Spring MVC framework, to declare a bean, simply annotate a method with the @Bean annotation. When JavaConfig encounters such a method, it will execute that method and register the...
View ArticleCrunchify Giveaway: 3 Free Kepard Premium VPN Accounts
Imagine being able to browse the Internet and transfer data at will without worrying about threats from viruses and hackers. That sort of freedom is available today with Kepard, a company offering the...
View ArticleHow to Run Multiple Tomcat Instances on One Server?
I’m sure you must have faced one of below question while developing Dynamic Web Project in past. Running multiple Tomcat instances on one server Running Multiple Tomcat Instances on Single Machine java...
View ArticleWordPress: How to Save Time on Files Upload
Plugin Review: Uploadcare Add media from anywhere: Uploadcare provides media uploading, processing and CDN for your blog. You can upload even very large images and crop them. This WordPress plugin...
View ArticleComm100 Live Chat – Chat Plugin for WordPress
Plugin Review: Comm100 Live Chat Comm100 Live Chat is the enterprise-grade live chat software for website. Comm100 Live Chat enables you to have a 360 degree view of your website visitors and provide...
View ArticleHow to use AJAX, jQuery in Spring Web MVC (.jsp) – Example
Recently I’ve to use jQuery, AJAX in Spring MVC Java example. In .jsp (View) I wanted to update specific field every 3 second. Let me share this simple example. This example will help you if you have...
View ArticleHow to Refresh DIV Content Without Reloading Page using jQuery?
In my previous example I’ve explained you, how to refresh data on JSP page coming from Spring MVC Controller and refresh using JQuery.. You can take a look at it here. This article will help you to...
View Article