HibernateTemplate or not HibernateTemplate
Manejo de Transacciones con Hibernate y Spring AOP
Spring Hibernate TX AOP
Configurar la capa de servicios como transaccionales con spring aop
Mapeo Sencillo con Configuración AOP de Spring Framework
How to use transacions with Spring 2.5 AOP and Hibernate 3.2.5
Consultas Con HibernateTemplate
Hibernate Criteria examples Dates
Código de Ejemplo para contar instancias usando Projections, aggregation and grouping
jueves, 19 de mayo de 2011
miércoles, 18 de mayo de 2011
Integración Struts1 con Spring e Hibernate
La documentación y los fuentes de una aplicación de ejemplo los encontrara aqui:
Struts + Spring + Hibernate integration example
Spring plugin para Struts 1.3.X
Spring struct y hibernate
How to configure Spring with Hibernate on Tomcat?
Framework Spring
Struts + Spring + Hibernate integration example
Spring plugin para Struts 1.3.X
Spring struct y hibernate
How to configure Spring with Hibernate on Tomcat?
Framework Spring
domingo, 15 de mayo de 2011
Instalación y Configuración Maven2
Servlet y Maven
How do I package a basic maven web application
I am trying to find the Oracle Ojdbc14.jar file in the maven repository
How to include library manually into maven local repository?
mvn install:install-file -Dfile=c:\kaptcha-2.3.jar -DgroupId=com.google.code
-DartifactId=kaptcha -Dversion=2.3 -Dpackaging=jar
Sintaxis:
Eliminar Artefacto:
mvn dependency:purge-local-repository -DresolutionFuzziness -Dfile=commons-email-1.2.jar -DgroupId=org.apache.commons.mail -DartifactId=LocalEmail -Dversion=1.2
How to clean the maven repository when testing release candidates
An introduction to Maven 2
Instalación de Maven2
Maven Tutorial 08 - Eclipse Plugin for Maven and Maven Plugin for Eclipse
Maven Tutorial 09 - Creating a Maven Project in Eclipse
Tutoriales de Maven
Creación de un repositorio maven interno accesible por SSH.
Maven Assembly Plugin: empaquetando aplicaciones con Maven para la ejecución de procesos batch.
How do I package a basic maven web application
I am trying to find the Oracle Ojdbc14.jar file in the maven repository
How to include library manually into maven local repository?
mvn install:install-file -Dfile=c:\kaptcha-2.3.jar -DgroupId=com.google.code
-DartifactId=kaptcha -Dversion=2.3 -Dpackaging=jar
-DgeneratePom=true
Sintaxis:
mvn install:install-file -Dfile=your-artifact-1.0.jar \
[-DpomFile=your-pom.xml] \
[-Dsources=src.jar] \
[-Djavadoc=apidocs.jar] \
[-DgroupId=org.some.group] \
[-DartifactId=your-artifact] \
[-Dversion=1.0] \
[-Dpackaging=jar] \
[-Dclassifier=sources] \
[-DgeneratePom=true] \
[-DcreateChecksum=true]
Eliminar Artefacto:
mvn dependency:purge-local-repository -DresolutionFuzziness -Dfile=commons-email-1.2.jar -DgroupId=org.apache.commons.mail -DartifactId=LocalEmail -Dversion=1.2
How to clean the maven repository when testing release candidates
An introduction to Maven 2
Instalación de Maven2
Maven Tutorial 08 - Eclipse Plugin for Maven and Maven Plugin for Eclipse
Maven Tutorial 09 - Creating a Maven Project in Eclipse
Tutoriales de Maven
Creación de un repositorio maven interno accesible por SSH.
Maven Assembly Plugin: empaquetando aplicaciones con Maven para la ejecución de procesos batch.
viernes, 13 de mayo de 2011
martes, 10 de mayo de 2011
sábado, 7 de mayo de 2011
Convertir un Byte Array a InputStream
byte[] bytes = ... //get byte array from somewhere.
InputStream input = new ByteArrayInputStream(bytes);
int data = input.read();
while(data != -1) {
//do something with data
data = input.read();
}
input.close();
Note: The proper exception handling has been skipped here for the sake of clarity. To learn more about correct exception handling, go to Java IO Exception Handling.
Obtener más información del tema
InputStream input = new ByteArrayInputStream(bytes);
int data = input.read();
while(data != -1) {
//do something with data
data = input.read();
}
input.close();
Note: The proper exception handling has been skipped here for the sake of clarity. To learn more about correct exception handling, go to Java IO Exception Handling.
Obtener más información del tema
Suscribirse a:
Entradas (Atom)