Skip to content

Instantly share code, notes, and snippets.

View rvazquezglez's full-sized avatar

Raúl Vázquez rvazquezglez

  • Mexico City, Mexico
View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-reverse-engineering PUBLIC "-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd" >
<hibernate-reverse-engineering>
<table-filter match-catalog="TEST" match-schema="PUBLIC" match-name="BANCO"/>
<table-filter match-catalog="TEST" match-schema="PUBLIC" match-name="CLIENTE"/>
<table-filter match-catalog="TEST" match-schema="PUBLIC" match-name="CUENTA"/>
<table-filter match-catalog="TEST" match-schema="PUBLIC" match-name="MOVIMIENTO"/>
<table-filter match-catalog="TEST" match-schema="PUBLIC" match-name="TIPOCUENTA"/>
<table-filter match-catalog="TEST" match-schema="PUBLIC" match-name="TIPOMOVIMIENTO"/>
<type-mapping>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
</type-mapping>
<type-mapping>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
<sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
</type-mapping>
@rvazquezglez
rvazquezglez / gist:7502623
Created November 16, 2013 17:13
Dependencias de hibernate
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.5.1-Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
Subject: Re: [pdxruby] Re: Complex return value anti-pattern?
From: Ward Cunningham <ward.cunningham@gmail.com>
Date: Thu, 29 Nov 2012 08:23:26 -0800
Pair programming is often misunderstood.
To understand pairing one must examine the world views of programmers. For
many (perhaps all programmers historically) programming is difficult and re
quires skill and concentration to be successful. For others, and here we fi
nd roots in dynamic languages, programming is easy but requires imagination
Subject: Re: [pdxruby] Re: Complex return value anti-pattern?
From: Ward Cunningham <ward.cunningham@gmail.com>
Date: Thu, 29 Nov 2012 08:23:26 -0800
Pair programming is often misunderstood.
To understand pairing one must examine the world views of programmers. For
many (perhaps all programmers historically) programming is difficult and re
quires skill and concentration to be successful. For others, and here we fi
nd roots in dynamic languages, programming is easy but requires imagination
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>javagurus.curso.frameworks</groupId>
<artifactId>ejemplo.struts2.h2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>ejemplo.struts2.h2</name>
package javagurus.curso.frameworks.dao;
import java.util.List;
import javagurus.curso.frameworks.model.Cliente;
import javagurus.curso.frameworks.util.HibernateUtil;
import org.hibernate.Criteria;
import org.hibernate.Query;
import org.hibernate.Session;
@rvazquezglez
rvazquezglez / pom-jquery-struts
Created May 11, 2013 15:30
Dependencias de jquery para struts
<struts2.jepert>3.4.0</struts2.jepert>
<!-- Dependencia básica -->
<dependency>
<groupId>com.jgeppert.struts2.jquery</groupId>
<artifactId>struts2-jquery-plugin</artifactId>
<version>${struts2.jepert}</version>
</dependency>
<!-- Depedencia para ocupar grid -->
<dependency>
@rvazquezglez
rvazquezglez / weblogic.xml
Created May 9, 2013 01:22
configuración weblogic primero clases del war
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd">
<weblogic-web-app>
<description>proy</description>
<context-root>/proy</context-root>
<container-descriptor>
<prefer-web-inf-classes>true</prefer-web-inf-classes>
</container-descriptor>
</weblogic-web-app>