Welcome!

Dependency Injection in Spring Framework

In this tip we will look at what Dependency Injection is and how this design pattern can be helpful. While working on different projects we sometimes come across situations where…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How To Restrict An Image File(or A Jar File) From Being Downloaded Through The Browser

So the solution is keep it in your WEB-INF folder so that browser is not able to access it.Simple and steady. That is one part of the story.Beacuse everything cant…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to create and use Custom tag

Custom tags are user defiend tag elements that provide the code reusability in jsp. we can resuse that tag every where in our web application. there are following steps needed…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Variable Argument Method in Java

A method which is able to process variable numbers of parameters is called VarArgs method. Most of us came across a function ‘printf()‘ in ‘C’ which is an example of…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to send an email using Java

From a Java application we can send an email to any recipient on any domain e.g. gmail, yahoomail, etc. The only thing we needed is a valid SMTP . We…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to draw custom shaped cursor without using an image?

We can customize our cursors in almost every Adobe software. Generally we do so by providing a beautiful image for our custom cursor. In Acrobat, In addition to customize the…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Tip to decode the QR Image and fetch the hidden information from QR using ZXing library in Java

Earlier I had posted a tip regarding detecting the QR in an Image. After detecting we had also fetched the QR Image as BitMatrix object. BitMatrix is just a class…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to get the value of same tag but used in different scenario in a XML File

If an XML file contains one tag that is used multiple times but in different context each time, it becomes a bit difficult extract and use each value programatically. In…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to use a Java Bean in a ColdFusion page?

Following steps are to be followed:- 1.Write a Java program that does not contain main method. 2.Complile the java program into .class file(for that you need to install jdk and…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!