jueves, 19 de diciembre de 2013

Tipoco Error ...collections.map.LRUMap Spring 3.2 - Hibernate - JPA - JasperReport


En un proyecto que tengo con
-Spring 3.2
- Hibernate
- JPA
- Tomcat
- Eclipse 4.x
- Maven 3.x
Todo funciona bien pero al integrarlo con JasperReport 5.x  y ejecutar mvn me aparece el siguiente error:

Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/spring.xml]: Invocation of init method failed; nested exception is entityManagerFactory java.lang.NoClassDefFoundError: org/apache/commons/collections/map/LRUMap

La Solución fue agregar al pom.xml :


commons-collections
commons-collections
3.1


viernes, 15 de noviembre de 2013

Convertir un Array de Objetos Javascript a JSon


I made it that way:

if I have:

var jsonArg1 = new Object();
    jsonArg1.name = 'calc this';
    jsonArg1.value = 3.1415;
var jsonArg2 = new Object();
    jsonArg2.name = 'calc this again';
    jsonArg2.value = 2.73;

var pluginArrayArg = new Array();
    pluginArrayArg.push(jsonArg1);
    pluginArrayArg.push(jsonArg2);
to convert pluginArrayArg (which is pure javascript array) into JSON array:

var jsonArray = JSON.parse(JSON.stringify(pluginArrayArg))


Gracias al aporte de:
http://stackoverflow.com/questions/2295496/convert-array-to-json


Como se hace en AJAX:

$.ajax({

                url:"contextPath/data",

                type:"POST",

                contentType: "application/json; charset=utf-8",

                data: JSON.stringify(pluginArrayArg)  , //Stringified Json Object

                async: false,    //Cross-domain requests and dataType: "jsonp" requests do not support synchronous operation

                cache: false,    //This will force requested pages not to be cached by the browser

                processData:false, //To avoid making query String instead of JSON

                success: function(resposeJsonObject){
alert(resposeJsonObject);
        }});

sábado, 11 de mayo de 2013

Oracle 10g stop y start service

Windows XP y 7

Method # 1
Change the startup mode of Oracle Database XE Service to "Manual" from Control Panel -> Administrative Tools -> Services

Method # 2
Execute "oradim -edit -sid XE -startmode manual" from DOS command-line. Remove "" during execution.

When you're done with this, you may now MANUALLY start the database either via the GUI or from the DOS command-line in the following manner:

Startup: oradim -startup -sid XE
Shutdown: oradim -shutdown -sid XE

Should this resolve your issue, kindly mark the thread as answered.

martes, 30 de abril de 2013

Test con JMeter

JMeter un ejemplo simple

JMeter, pruebas de stress sobre aplicaciones web

Multiple user logins in JMeter

How to Feed JMeter from a CSV File

Tomcat 6 monitoreo con JMX

Si trabajas en un entorno de desarrollo con windows xp y tomcat 6 la activación de JMX se realiza en el icono de tomcat(Tomcat6w.exe), debes seleccionar:


Ojo los parámetros no deben contener espacios en blanco, de lo contrario puede que no inicie tomcat.

Monitorizando con JMX

Monitorizar un servidor Tomcat con JMX (linux)