LOG.info( "Configurando Spring" );
AbstractApplicationContext context = new ClassPathXmlApplicationContext( new String[]{ "spring-configuration.xml" } );
context.registerShutdownHook();
JsonMapper jsonMapper = context.getBean( "jsonMapper", JsonMapper.class );
String json = jsonMapper.vuelo2Json( mockVuelo() );
Vuelo vuelo = jsonMapper.json2Vuelo( json );
String reJson = jsonMapper.vuelo2Json( vuelo );
if( json.equals( reJson ) ) {
LOG.info( "Todo chido!" );