Blog4Java

A personal and Java blog, likely only for me

March 31, 2015
by Javier (@jbbarquero)
0 comments

Getting started with Docker

What is Docker? Docker is a platform. Docker runs natively on Linux or on OS X and Windows through a helper application called boot2docker that creates a Linux Virtual Machine, by using only RAM, to run Docker. Docker‘s main goal … Continue reading

March 2, 2015
by Javier (@jbbarquero)
0 comments

Getting started with Spark

Spark Introduction Apache Spark is a cluster computing platform designed to be fast, expresive, high level, general-purpose, fault-tolerante and compatible with Hadoop (Spark can work directly with HDFS, S3 and so on). Spark can also be defined as a framework … Continue reading

February 25, 2015
by Javier (@jbbarquero)
0 comments

Getting started with Hadoop

Hadoop Introduction Hadoop is an open source framework for distributed fault-tolerant data storage and batch processing. It allows you to write applications for processing really huge data sets across clusters of computers using simple programming model with linear scalability on … Continue reading

October 23, 2014
by Javier (@jbbarquero)
1 Comment

Orika time!

I love good software, and Orika is a really interesting project. In this post I’m going to talk about this Java bean mapping framework that I’ve used recently and I highly recommend. Orika (formerly hosted at google code) claims to … Continue reading

September 3, 2014
by Javier (@jbbarquero)
0 comments

Introduction to Spring Batch

Spring Batch is the Spring Project aimed to write Java Batch applications by using the foundations of Spring Framework. Michael T. Minella, project lead of Spring Batch and also a member of the JSR 352 (Batch Applications for the Java … Continue reading

August 13, 2014
by Javier (@jbbarquero)
0 comments

Tomcat and JSTL: sometimes I feel tired

Bazinga! tomcat 7 org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application You can dive into our beloved stackoverflow.com to find out that Tomcat doesn’t include JSTL,not even in Tomcat … Continue reading