Memorynotfound Java Programming Tutorials
Adding Header and Footer in PDF using iText in Java
When creating PDF documents, the first thing we usually do, is create a header and footer for every page. Adding an image to the header, helps to brand the product and/or business. At the...
Create PDF Document with iText in Java
Many applications need to generate dynamic PDF documents. These documents vary from invoices, ebooks or vouchers etc. There are literally endless use-cases. This’ll be the first out of a series of tutorials regarding iText...
Remove Accents and Diacritics from String
While indexing, you need to pre-process your data for fast and reliable search queries. One of these processes is normalizing your data. This includes, but not limits to, removing accents and diacritics from text,...
Convert Hexadecimal to ASCII String in Java
Hexa (six) plus decimal (ten) equals sixteen. It stands for the Base 16 Number System. Valid hexadecimal digits are numbers from 0 to 9 and letters from A through F. Hexadecimal numerals are widely...
Spring MVC RESTFul Web Service CRUD Example
In this tutorial we show you how to build a RESTFul Web Service using Spring MVC 4. We create a controller that’ll manage CRUD operations like Create, Read, Update and Delete using the correct...
Spring MVC PDF View Example
This tutorial demonstrates how to create a PDF view using Spring MVC and itext. Out of the box spring only supports the older com.lowagie:itext library. The newest com.itextpdf:itext library is not supported by default....
Spring MVC Excel View Example
In this tutorial we demonstrate how to create an Excel view using Spring MVC. By utilizing Spring MVC Content negotiation we can have multiple views of the same resource. This example shows how to...
Spring MVC RSS ATOM Content Negotiation Example
In this tutorial we show a Spring MVC RSS ATOM Content Negotiation example. Using Content Negotiation we can serve different versions of a document (or resource) at the same URI. Depending on the HTTP...
Spring MVC Content Negotiation XML JSON
This tutorial shows you how to use Spring MVC Content Negotiation XML JSON features. According to wikipedia, “content negotiation is a mechanism defined in the HTTP specification that makes it possible to serve different...