-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Hibernate Remote Hosting Deploy Mapping
PostPosted: Thu Oct 07, 2010 9:25 pm 
Newbie

Joined: Tue Oct 05, 2010 6:23 pm
Posts: 1
I am trying to use Hibernate placed in a remote hosting.

The problem is that each time i call a servlet (facade pattern) hibernate does all the mapping of the classes.
I found something similar here:https://forum.hibernate.org/viewtopic.php?f=1&t=959560&start=0&hilit=mapping+sessionfactory+deploy+everytime but with out conclusion.

i try with openSession and getCurrentSession methods, but i had the same results.

Of course in my local tomcat it works perfect.

Here is my HibernateManager:
*************************************************************************************
public class HibernateManager3 {

private static final SessionFactory sessionFactory;

static {
try {

sessionFactory = new Configuration().configure("hibernategama.cfg.xml").buildSessionFactory();

} catch (Throwable ex) {

System.err.println("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
}

public static SessionFactory getSessionFactory() {
return sessionFactory;
}

}
*************************************************************************************|



Here is a sample using createQuery:
*************************************************************************************|
Session session = HibernateManager3.getSessionFactory().getCurrentSession();
Transaction tx = session.beginTransaction();


Estado entidad = (Estado)session.createQuery(
"from Estado where codigo = ?")
.setString(0, id)
.uniqueResult();

tx.commit();

*************************************************************************************|


In the following log, the client side application make 3 calls to the servlet.



23:16:04,664 INFO Environment:543 - Hibernate 3.3.1.GA
23:16:04,671 INFO Environment:576 - hibernate.properties not found
23:16:04,675 INFO Environment:709 - Bytecode provider name : javassist
23:16:04,679 INFO Environment:627 - using JDK 1.4 java.sql.Timestamp handling
23:16:04,739 INFO Configuration:1460 - configuring from resource: hibernategama.cfg.xml
23:16:04,739 INFO Configuration:1437 - Configuration resource: hibernategama.cfg.xml
23:16:04,798 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Articulo.hbm
23:16:04,851 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Articulo -> articulo
23:16:04,928 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Cotizacion.hbm
23:16:04,933 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Cotizacion -> Cotizacion
23:16:04,933 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Deposito.hbm
23:16:04,938 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Deposito -> Deposito
23:16:04,938 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Documento.hbm
23:16:04,943 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Documento -> Documento
23:16:04,943 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Empresa.hbm
23:16:04,948 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Empresa -> Empresa
23:16:04,948 INFO Configuration:586 - Reading mappings from resource : gama/servidor/EquivalenciaUnidad.hbm
23:16:04,953 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.EquivalenciaUnidad -> EquivalenciaUnidad
23:16:04,953 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Estado.hbm
23:16:04,958 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Estado -> Estado
23:16:04,958 INFO Configuration:586 - Reading mappings from resource : gama/servidor/FormaPago.hbm
23:16:04,963 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.FormaPago -> FormaPago
23:16:04,963 INFO Configuration:586 - Reading mappings from resource : gama/servidor/FormulaProductiva.hbm
23:16:04,968 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.FormulaProductiva -> FormulaProductiva
23:16:04,969 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Formulario.hbm
23:16:04,992 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Formulario -> Formulario
23:16:04,993 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Menu.hbm
23:16:04,998 INFO HbmBinder:322 - Mapping class: gama.nucleo.general.Menu -> Menu
23:16:04,998 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MenuFormulario.hbm
23:16:05,003 INFO HbmBinder:322 - Mapping class: gama.nucleo.general.MenuFormulario -> MenuFormulario
23:16:05,003 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Moneda.hbm
23:16:05,007 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Moneda -> Moneda
23:16:05,008 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MovimientoStockCabezal.hbm
23:16:05,013 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.MovimientoStockCabezal -> MovimientoStock
23:16:05,014 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MovimientoStockLinea.hbm
23:16:05,019 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.MovimientoStockLinea -> MovimientoStockLineas
23:16:05,020 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Numeradores.hbm
23:16:05,024 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Numerador -> Numeradores
23:16:05,025 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionCabezal.hbm
23:16:05,030 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionCabezal -> OrdenProduccionCabezal
23:16:05,036 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionLinea.hbm
23:16:05,041 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionLinea -> OrdenProduccionLinea
23:16:05,042 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Proveedor.hbm
23:16:05,048 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Proveedor -> Proveedor
23:16:05,049 INFO Configuration:586 - Reading mappings from resource : gama/servidor/SaldoTraza.hbm
23:16:05,054 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.SaldoTraza -> vsaldostrazas
23:16:05,055 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TasaIva.hbm
23:16:05,059 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TasaIva -> TasaIva
23:16:05,060 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TipoArticulo.hbm
23:16:05,065 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TipoArticulo -> tipoarticulo
23:16:05,065 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TipoProveedor.hbm
23:16:05,070 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TipoProveedor -> TipoProveedor
23:16:05,071 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Unidad.hbm
23:16:05,075 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Unidad -> Unidad
23:16:05,076 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Usuario.hbm
23:16:05,080 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Usuario -> Usuario
23:16:05,081 INFO Configuration:586 - Reading mappings from resource : gama/servidor/UsuarioPermiso.hbm
23:16:05,085 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.UsuarioPermiso -> UsuarioPermiso
23:16:05,086 INFO Configuration:586 - Reading mappings from resource : gama/servidor/UsuarioPermisoMetodoClase.hbm
23:16:05,090 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.UsuarioPermisoMetodoClase -> UsuarioPermisoMetodoClase
23:16:05,091 INFO Configuration:586 - Reading mappings from resource : gama/servidor/VersionFormula.hbm
23:16:05,096 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.VersionFormula -> VersionFormula
23:16:05,096 INFO Configuration:586 - Reading mappings from resource : gama/servidor/AltaStockCabezal.hbm
23:16:05,101 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.AltaStockCabezal -> altastockcabezal
23:16:05,102 INFO Configuration:586 - Reading mappings from resource : gama/servidor/AltaStockLinea.hbm
23:16:05,107 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.AltaStockLinea -> altastocklinea
23:16:05,108 INFO Configuration:586 - Reading mappings from resource : gama/servidor/CuentaContable.hbm
23:16:05,112 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.CuentaContable -> cuentacontable
23:16:05,113 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaStockCabezal.hbm
23:16:05,118 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.BajaStockCabezal -> bajastockcabezal
23:16:05,119 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaStockLinea.hbm
23:16:05,124 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.BajaStockLinea -> bajastocklinea
23:16:05,124 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TransferenciaStockCabezal.hbm
23:16:05,129 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.TransferenciaStockCabezal -> transferenciastockcabezal
23:16:05,130 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TransferenciaStockLinea.hbm
23:16:05,135 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.TransferenciaStockLinea -> transferenciastocklinea
23:16:05,135 INFO Configuration:586 - Reading mappings from resource : gama/servidor/SaldoArticulo.hbm
23:16:05,140 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.SaldoArticulo -> vsaldoarticulo
23:16:05,141 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaStockMinimo.hbm
23:16:05,145 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaStockMinimo -> vConsultaStockMinimo
23:16:05,146 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionPendiente.hbm
23:16:05,151 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionPendiente -> vOrdenProduccionPendiente
23:16:05,152 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ParteProduccionCabezal.hbm
23:16:05,157 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.ParteProduccionCabezal -> ParteProduccionCabezal
23:16:05,159 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ParteProduccionLinea.hbm
23:16:05,164 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.ParteProduccionLinea -> ParteProduccionLinea
23:16:05,165 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Operario.hbm
23:16:05,169 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Operario -> operario
23:16:05,170 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Turno.hbm
23:16:05,174 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Turno -> turno
23:16:05,175 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaStockPuntoPedido.hbm
23:16:05,180 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaStockPuntoPedido -> vConsultaStockPuntoPedido
23:16:05,180 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaFichaStock.hbm
23:16:05,185 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaFichaStock -> vfichastock
23:16:05,186 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Envase.hbm
23:16:05,191 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Envase -> envase
23:16:05,192 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaEnvase.hbm
23:16:05,196 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.BajaEnvase -> vbajasenvases
23:16:05,197 INFO Configuration:586 - Reading mappings from resource : gama/servidor/InformeRendimiento.hbm
23:16:05,202 INFO HbmBinder:322 - Mapping class: gama.nucleo.informes.InformeRendimiento -> informerendimiento
23:16:05,203 INFO Configuration:586 - Reading mappings from resource : gama/servidor/InformeOid.hbm
23:16:05,207 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.InformeOid -> informeOid
23:16:05,208 INFO Configuration:1575 - Configured SessionFactory: null
23:16:05,209 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.OrdenProduccionCabezal.alLineas -> OrdenProduccionLinea
23:16:05,210 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.entidad.VersionFormula.alLineas -> FormulaProductiva
23:16:05,210 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.AltaStockCabezal.alLineas -> altastocklinea
23:16:05,210 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.BajaStockCabezal.alLineas -> bajastocklinea
23:16:05,211 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.TransferenciaStockCabezal.alLineas -> transferenciastocklinea
23:16:05,211 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.ParteProduccionCabezal.alLineas -> ParteProduccionLinea
23:16:05,223 INFO DriverManagerConnectionProvider:64 - Using Hibernate built-in connection pool (not for production use!)
23:16:05,224 INFO DriverManagerConnectionProvider:65 - Hibernate connection pool size: 20
23:16:05,224 INFO DriverManagerConnectionProvider:68 - autocommit mode: false
23:16:05,225 INFO DriverManagerConnectionProvider:103 - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost/sizian_gama
23:16:05,225 INFO DriverManagerConnectionProvider:109 - connection properties: {user=sizian_gama, password=****}
23:16:05,233 INFO SettingsFactory:116 - RDBMS: MySQL, version: 5.0.91-community
23:16:05,234 INFO SettingsFactory:117 - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.13 ( Revision: ${bzr.revision-id} )
23:16:05,257 INFO Dialect:175 - Using dialect: org.hibernate.dialect.MySQLDialect
23:16:05,262 INFO TransactionFactoryFactory:59 - Using default transaction strategy (direct JDBC transactions)
23:16:05,265 INFO TransactionManagerLookupFactory:80 - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
23:16:05,265 INFO SettingsFactory:170 - Automatic flush during beforeCompletion(): disabled
23:16:05,266 INFO SettingsFactory:174 - Automatic session close at end of transaction: disabled
23:16:05,266 INFO SettingsFactory:181 - JDBC batch size: 15
23:16:05,266 INFO SettingsFactory:184 - JDBC batch updates for versioned data: disabled
23:16:05,267 INFO SettingsFactory:189 - Scrollable result sets: enabled
23:16:05,268 INFO SettingsFactory:197 - JDBC3 getGeneratedKeys(): enabled
23:16:05,268 INFO SettingsFactory:205 - Connection release mode: auto
23:16:05,269 INFO SettingsFactory:229 - Maximum outer join fetch depth: 2
23:16:05,269 INFO SettingsFactory:232 - Default batch fetch size: 1
23:16:05,270 INFO SettingsFactory:236 - Generate SQL with comments: disabled
23:16:05,270 INFO SettingsFactory:240 - Order SQL updates by primary key: disabled
23:16:05,270 INFO SettingsFactory:244 - Order SQL inserts for batching: disabled
23:16:05,271 INFO SettingsFactory:420 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
23:16:05,273 INFO ASTQueryTranslatorFactory:47 - Using ASTQueryTranslatorFactory
23:16:05,274 INFO SettingsFactory:252 - Query language substitutions: {}
23:16:05,274 INFO SettingsFactory:257 - JPA-QL strict compliance: disabled
23:16:05,274 INFO SettingsFactory:262 - Second-level cache: enabled
23:16:05,274 INFO SettingsFactory:266 - Query cache: disabled
23:16:05,275 INFO SettingsFactory:405 - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
23:16:05,275 INFO SettingsFactory:276 - Optimize cache for minimal puts: disabled
23:16:05,276 INFO SettingsFactory:285 - Structured second-level cache entries: disabled
23:16:05,280 INFO SettingsFactory:305 - Echoing all SQL to stdout
23:16:05,281 INFO SettingsFactory:314 - Statistics: disabled
23:16:05,282 INFO SettingsFactory:318 - Deleted entity synthetic identifier rollback: disabled
23:16:05,282 INFO SettingsFactory:333 - Default entity-mode: pojo
23:16:05,282 INFO SettingsFactory:337 - Named query checking : enabled
23:16:05,324 INFO SessionFactoryImpl:187 - building session factory
23:16:06,494 INFO SessionFactoryObjectFactory:105 - Not binding factory to JNDI, no JNDI name configured
23:16:08,933 INFO Environment:543 - Hibernate 3.3.1.GA
23:16:08,940 INFO Environment:576 - hibernate.properties not found
23:16:08,945 INFO Environment:709 - Bytecode provider name : javassist
23:16:08,948 INFO Environment:627 - using JDK 1.4 java.sql.Timestamp handling
23:16:09,009 INFO Configuration:1460 - configuring from resource: hibernategama.cfg.xml
23:16:09,010 INFO Configuration:1437 - Configuration resource: hibernategama.cfg.xml
23:16:09,069 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Articulo.hbm
23:16:09,125 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Articulo -> articulo
23:16:09,203 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Cotizacion.hbm
23:16:09,208 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Cotizacion -> Cotizacion
23:16:09,209 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Deposito.hbm
23:16:09,214 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Deposito -> Deposito
23:16:09,215 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Documento.hbm
23:16:09,220 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Documento -> Documento
23:16:09,220 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Empresa.hbm
23:16:09,225 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Empresa -> Empresa
23:16:09,226 INFO Configuration:586 - Reading mappings from resource : gama/servidor/EquivalenciaUnidad.hbm
23:16:09,231 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.EquivalenciaUnidad -> EquivalenciaUnidad
23:16:09,231 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Estado.hbm
23:16:09,236 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Estado -> Estado
23:16:09,237 INFO Configuration:586 - Reading mappings from resource : gama/servidor/FormaPago.hbm
23:16:09,241 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.FormaPago -> FormaPago
23:16:09,242 INFO Configuration:586 - Reading mappings from resource : gama/servidor/FormulaProductiva.hbm
23:16:09,247 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.FormulaProductiva -> FormulaProductiva
23:16:09,248 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Formulario.hbm
23:16:09,253 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Formulario -> Formulario
23:16:09,254 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Menu.hbm
23:16:09,259 INFO HbmBinder:322 - Mapping class: gama.nucleo.general.Menu -> Menu
23:16:09,259 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MenuFormulario.hbm
23:16:09,264 INFO HbmBinder:322 - Mapping class: gama.nucleo.general.MenuFormulario -> MenuFormulario
23:16:09,265 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Moneda.hbm
23:16:09,270 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Moneda -> Moneda
23:16:09,270 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MovimientoStockCabezal.hbm
23:16:09,275 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.MovimientoStockCabezal -> MovimientoStock
23:16:09,276 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MovimientoStockLinea.hbm
23:16:09,282 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.MovimientoStockLinea -> MovimientoStockLineas
23:16:09,283 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Numeradores.hbm
23:16:09,287 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Numerador -> Numeradores
23:16:09,288 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionCabezal.hbm
23:16:09,294 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionCabezal -> OrdenProduccionCabezal
23:16:09,299 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionLinea.hbm
23:16:09,305 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionLinea -> OrdenProduccionLinea
23:16:09,306 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Proveedor.hbm
23:16:09,311 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Proveedor -> Proveedor
23:16:09,312 INFO Configuration:586 - Reading mappings from resource : gama/servidor/SaldoTraza.hbm
23:16:09,318 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.SaldoTraza -> vsaldostrazas
23:16:09,319 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TasaIva.hbm
23:16:09,324 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TasaIva -> TasaIva
23:16:09,324 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TipoArticulo.hbm
23:16:09,329 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TipoArticulo -> tipoarticulo
23:16:09,329 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TipoProveedor.hbm
23:16:09,334 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TipoProveedor -> TipoProveedor
23:16:09,334 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Unidad.hbm
23:16:09,339 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Unidad -> Unidad
23:16:09,340 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Usuario.hbm
23:16:09,344 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Usuario -> Usuario
23:16:09,345 INFO Configuration:586 - Reading mappings from resource : gama/servidor/UsuarioPermiso.hbm
23:16:09,349 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.UsuarioPermiso -> UsuarioPermiso
23:16:09,350 INFO Configuration:586 - Reading mappings from resource : gama/servidor/UsuarioPermisoMetodoClase.hbm
23:16:09,355 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.UsuarioPermisoMetodoClase -> UsuarioPermisoMetodoClase
23:16:09,355 INFO Configuration:586 - Reading mappings from resource : gama/servidor/VersionFormula.hbm
23:16:09,360 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.VersionFormula -> VersionFormula
23:16:09,361 INFO Configuration:586 - Reading mappings from resource : gama/servidor/AltaStockCabezal.hbm
23:16:09,366 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.AltaStockCabezal -> altastockcabezal
23:16:09,367 INFO Configuration:586 - Reading mappings from resource : gama/servidor/AltaStockLinea.hbm
23:16:09,371 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.AltaStockLinea -> altastocklinea
23:16:09,372 INFO Configuration:586 - Reading mappings from resource : gama/servidor/CuentaContable.hbm
23:16:09,377 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.CuentaContable -> cuentacontable
23:16:09,377 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaStockCabezal.hbm
23:16:09,382 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.BajaStockCabezal -> bajastockcabezal
23:16:09,383 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaStockLinea.hbm
23:16:09,388 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.BajaStockLinea -> bajastocklinea
23:16:09,389 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TransferenciaStockCabezal.hbm
23:16:09,394 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.TransferenciaStockCabezal -> transferenciastockcabezal
23:16:09,395 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TransferenciaStockLinea.hbm
23:16:09,400 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.TransferenciaStockLinea -> transferenciastocklinea
23:16:09,401 INFO Configuration:586 - Reading mappings from resource : gama/servidor/SaldoArticulo.hbm
23:16:09,406 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.SaldoArticulo -> vsaldoarticulo
23:16:09,407 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaStockMinimo.hbm
23:16:09,412 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaStockMinimo -> vConsultaStockMinimo
23:16:09,413 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionPendiente.hbm
23:16:09,418 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionPendiente -> vOrdenProduccionPendiente
23:16:09,419 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ParteProduccionCabezal.hbm
23:16:09,425 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.ParteProduccionCabezal -> ParteProduccionCabezal
23:16:09,427 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ParteProduccionLinea.hbm
23:16:09,432 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.ParteProduccionLinea -> ParteProduccionLinea
23:16:09,433 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Operario.hbm
23:16:09,438 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Operario -> operario
23:16:09,439 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Turno.hbm
23:16:09,443 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Turno -> turno
23:16:09,444 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaStockPuntoPedido.hbm
23:16:09,449 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaStockPuntoPedido -> vConsultaStockPuntoPedido
23:16:09,449 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaFichaStock.hbm
23:16:09,454 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaFichaStock -> vfichastock
23:16:09,455 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Envase.hbm
23:16:09,460 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Envase -> envase
23:16:09,461 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaEnvase.hbm
23:16:09,465 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.BajaEnvase -> vbajasenvases
23:16:09,466 INFO Configuration:586 - Reading mappings from resource : gama/servidor/InformeRendimiento.hbm
23:16:09,472 INFO HbmBinder:322 - Mapping class: gama.nucleo.informes.InformeRendimiento -> informerendimiento
23:16:09,473 INFO Configuration:586 - Reading mappings from resource : gama/servidor/InformeOid.hbm
23:16:09,477 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.InformeOid -> informeOid
23:16:09,478 INFO Configuration:1575 - Configured SessionFactory: null
23:16:09,479 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.OrdenProduccionCabezal.alLineas -> OrdenProduccionLinea
23:16:09,480 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.entidad.VersionFormula.alLineas -> FormulaProductiva
23:16:09,480 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.AltaStockCabezal.alLineas -> altastocklinea
23:16:09,481 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.BajaStockCabezal.alLineas -> bajastocklinea
23:16:09,481 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.TransferenciaStockCabezal.alLineas -> transferenciastocklinea
23:16:09,481 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.ParteProduccionCabezal.alLineas -> ParteProduccionLinea
23:16:09,493 INFO DriverManagerConnectionProvider:64 - Using Hibernate built-in connection pool (not for production use!)
23:16:09,494 INFO DriverManagerConnectionProvider:65 - Hibernate connection pool size: 20
23:16:09,494 INFO DriverManagerConnectionProvider:68 - autocommit mode: false
23:16:09,495 INFO DriverManagerConnectionProvider:103 - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost/sizian_gama
23:16:09,495 INFO DriverManagerConnectionProvider:109 - connection properties: {user=sizian_gama, password=****}
23:16:09,503 INFO SettingsFactory:116 - RDBMS: MySQL, version: 5.0.91-community
23:16:09,504 INFO SettingsFactory:117 - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.13 ( Revision: ${bzr.revision-id} )
23:16:09,526 INFO Dialect:175 - Using dialect: org.hibernate.dialect.MySQLDialect
23:16:09,531 INFO TransactionFactoryFactory:59 - Using default transaction strategy (direct JDBC transactions)
23:16:09,533 INFO TransactionManagerLookupFactory:80 - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
23:16:09,534 INFO SettingsFactory:170 - Automatic flush during beforeCompletion(): disabled
23:16:09,534 INFO SettingsFactory:174 - Automatic session close at end of transaction: disabled
23:16:09,534 INFO SettingsFactory:181 - JDBC batch size: 15
23:16:09,535 INFO SettingsFactory:184 - JDBC batch updates for versioned data: disabled
23:16:09,536 INFO SettingsFactory:189 - Scrollable result sets: enabled
23:16:09,536 INFO SettingsFactory:197 - JDBC3 getGeneratedKeys(): enabled
23:16:09,536 INFO SettingsFactory:205 - Connection release mode: auto
23:16:09,537 INFO SettingsFactory:229 - Maximum outer join fetch depth: 2
23:16:09,538 INFO SettingsFactory:232 - Default batch fetch size: 1
23:16:09,538 INFO SettingsFactory:236 - Generate SQL with comments: disabled
23:16:09,538 INFO SettingsFactory:240 - Order SQL updates by primary key: disabled
23:16:09,539 INFO SettingsFactory:244 - Order SQL inserts for batching: disabled
23:16:09,539 INFO SettingsFactory:420 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
23:16:09,541 INFO ASTQueryTranslatorFactory:47 - Using ASTQueryTranslatorFactory
23:16:09,542 INFO SettingsFactory:252 - Query language substitutions: {}
23:16:09,542 INFO SettingsFactory:257 - JPA-QL strict compliance: disabled
23:16:09,543 INFO SettingsFactory:262 - Second-level cache: enabled
23:16:09,543 INFO SettingsFactory:266 - Query cache: disabled
23:16:09,543 INFO SettingsFactory:405 - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
23:16:09,544 INFO SettingsFactory:276 - Optimize cache for minimal puts: disabled
23:16:09,544 INFO SettingsFactory:285 - Structured second-level cache entries: disabled
23:16:09,549 INFO SettingsFactory:305 - Echoing all SQL to stdout
23:16:09,550 INFO SettingsFactory:314 - Statistics: disabled
23:16:09,550 INFO SettingsFactory:318 - Deleted entity synthetic identifier rollback: disabled
23:16:09,551 INFO SettingsFactory:333 - Default entity-mode: pojo
23:16:09,551 INFO SettingsFactory:337 - Named query checking : enabled
23:16:09,595 INFO SessionFactoryImpl:187 - building session factory
23:16:10,145 INFO SessionFactoryObjectFactory:105 - Not binding factory to JNDI, no JNDI name configured
23:17:04,560 INFO Environment:543 - Hibernate 3.3.1.GA
23:17:04,568 INFO Environment:576 - hibernate.properties not found
23:17:04,572 INFO Environment:709 - Bytecode provider name : javassist
23:17:04,575 INFO Environment:627 - using JDK 1.4 java.sql.Timestamp handling
23:17:04,635 INFO Configuration:1460 - configuring from resource: hibernategama.cfg.xml
23:17:04,636 INFO Configuration:1437 - Configuration resource: hibernategama.cfg.xml
23:17:04,694 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Articulo.hbm
23:17:04,748 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Articulo -> articulo
23:17:04,825 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Cotizacion.hbm
23:17:04,831 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Cotizacion -> Cotizacion
23:17:04,832 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Deposito.hbm
23:17:04,837 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Deposito -> Deposito
23:17:04,838 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Documento.hbm
23:17:04,843 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Documento -> Documento
23:17:04,843 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Empresa.hbm
23:17:04,848 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Empresa -> Empresa
23:17:04,849 INFO Configuration:586 - Reading mappings from resource : gama/servidor/EquivalenciaUnidad.hbm
23:17:04,854 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.EquivalenciaUnidad -> EquivalenciaUnidad
23:17:04,854 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Estado.hbm
23:17:04,859 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Estado -> Estado
23:17:04,860 INFO Configuration:586 - Reading mappings from resource : gama/servidor/FormaPago.hbm
23:17:04,864 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.FormaPago -> FormaPago
23:17:04,865 INFO Configuration:586 - Reading mappings from resource : gama/servidor/FormulaProductiva.hbm
23:17:04,870 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.FormulaProductiva -> FormulaProductiva
23:17:04,871 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Formulario.hbm
23:17:04,877 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Formulario -> Formulario
23:17:04,878 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Menu.hbm
23:17:04,883 INFO HbmBinder:322 - Mapping class: gama.nucleo.general.Menu -> Menu
23:17:04,883 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MenuFormulario.hbm
23:17:04,888 INFO HbmBinder:322 - Mapping class: gama.nucleo.general.MenuFormulario -> MenuFormulario
23:17:04,888 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Moneda.hbm
23:17:04,893 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Moneda -> Moneda
23:17:04,894 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MovimientoStockCabezal.hbm
23:17:04,898 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.MovimientoStockCabezal -> MovimientoStock
23:17:04,899 INFO Configuration:586 - Reading mappings from resource : gama/servidor/MovimientoStockLinea.hbm
23:17:04,904 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.MovimientoStockLinea -> MovimientoStockLineas
23:17:04,905 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Numeradores.hbm
23:17:04,910 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Numerador -> Numeradores
23:17:04,911 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionCabezal.hbm
23:17:04,916 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionCabezal -> OrdenProduccionCabezal
23:17:04,922 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionLinea.hbm
23:17:04,927 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionLinea -> OrdenProduccionLinea
23:17:04,929 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Proveedor.hbm
23:17:04,934 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Proveedor -> Proveedor
23:17:04,936 INFO Configuration:586 - Reading mappings from resource : gama/servidor/SaldoTraza.hbm
23:17:04,941 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.SaldoTraza -> vsaldostrazas
23:17:04,942 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TasaIva.hbm
23:17:04,947 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TasaIva -> TasaIva
23:17:04,948 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TipoArticulo.hbm
23:17:04,953 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TipoArticulo -> tipoarticulo
23:17:04,954 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TipoProveedor.hbm
23:17:04,959 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.TipoProveedor -> TipoProveedor
23:17:04,959 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Unidad.hbm
23:17:04,964 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Unidad -> Unidad
23:17:04,964 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Usuario.hbm
23:17:04,969 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Usuario -> Usuario
23:17:04,970 INFO Configuration:586 - Reading mappings from resource : gama/servidor/UsuarioPermiso.hbm
23:17:04,974 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.UsuarioPermiso -> UsuarioPermiso
23:17:04,975 INFO Configuration:586 - Reading mappings from resource : gama/servidor/UsuarioPermisoMetodoClase.hbm
23:17:04,980 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.UsuarioPermisoMetodoClase -> UsuarioPermisoMetodoClase
23:17:04,980 INFO Configuration:586 - Reading mappings from resource : gama/servidor/VersionFormula.hbm
23:17:04,985 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.VersionFormula -> VersionFormula
23:17:04,986 INFO Configuration:586 - Reading mappings from resource : gama/servidor/AltaStockCabezal.hbm
23:17:04,991 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.AltaStockCabezal -> altastockcabezal
23:17:04,992 INFO Configuration:586 - Reading mappings from resource : gama/servidor/AltaStockLinea.hbm
23:17:04,997 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.AltaStockLinea -> altastocklinea
23:17:04,998 INFO Configuration:586 - Reading mappings from resource : gama/servidor/CuentaContable.hbm
23:17:05,002 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.CuentaContable -> cuentacontable
23:17:05,003 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaStockCabezal.hbm
23:17:05,008 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.BajaStockCabezal -> bajastockcabezal
23:17:05,009 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaStockLinea.hbm
23:17:05,014 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.BajaStockLinea -> bajastocklinea
23:17:05,015 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TransferenciaStockCabezal.hbm
23:17:05,020 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.TransferenciaStockCabezal -> transferenciastockcabezal
23:17:05,021 INFO Configuration:586 - Reading mappings from resource : gama/servidor/TransferenciaStockLinea.hbm
23:17:05,025 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.TransferenciaStockLinea -> transferenciastocklinea
23:17:05,026 INFO Configuration:586 - Reading mappings from resource : gama/servidor/SaldoArticulo.hbm
23:17:05,031 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.SaldoArticulo -> vsaldoarticulo
23:17:05,032 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaStockMinimo.hbm
23:17:05,037 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaStockMinimo -> vConsultaStockMinimo
23:17:05,037 INFO Configuration:586 - Reading mappings from resource : gama/servidor/OrdenProduccionPendiente.hbm
23:17:05,042 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.OrdenProduccionPendiente -> vOrdenProduccionPendiente
23:17:05,043 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ParteProduccionCabezal.hbm
23:17:05,049 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.ParteProduccionCabezal -> ParteProduccionCabezal
23:17:05,051 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ParteProduccionLinea.hbm
23:17:05,056 INFO HbmBinder:322 - Mapping class: gama.nucleo.formularios.ParteProduccionLinea -> ParteProduccionLinea
23:17:05,057 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Operario.hbm
23:17:05,061 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Operario -> operario
23:17:05,062 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Turno.hbm
23:17:05,066 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Turno -> turno
23:17:05,067 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaStockPuntoPedido.hbm
23:17:05,071 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaStockPuntoPedido -> vConsultaStockPuntoPedido
23:17:05,072 INFO Configuration:586 - Reading mappings from resource : gama/servidor/ConsultaFichaStock.hbm
23:17:05,077 INFO HbmBinder:322 - Mapping class: gama.nucleo.consulta.ConsultaFichaStock -> vfichastock
23:17:05,078 INFO Configuration:586 - Reading mappings from resource : gama/servidor/Envase.hbm
23:17:05,082 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.Envase -> envase
23:17:05,083 INFO Configuration:586 - Reading mappings from resource : gama/servidor/BajaEnvase.hbm
23:17:05,088 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.BajaEnvase -> vbajasenvases
23:17:05,089 INFO Configuration:586 - Reading mappings from resource : gama/servidor/InformeRendimiento.hbm
23:17:05,094 INFO HbmBinder:322 - Mapping class: gama.nucleo.informes.InformeRendimiento -> informerendimiento
23:17:05,096 INFO Configuration:586 - Reading mappings from resource : gama/servidor/InformeOid.hbm
23:17:05,100 INFO HbmBinder:322 - Mapping class: gama.nucleo.entidad.InformeOid -> informeOid
23:17:05,101 INFO Configuration:1575 - Configured SessionFactory: null
23:17:05,102 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.OrdenProduccionCabezal.alLineas -> OrdenProduccionLinea
23:17:05,103 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.entidad.VersionFormula.alLineas -> FormulaProductiva
23:17:05,104 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.AltaStockCabezal.alLineas -> altastocklinea
23:17:05,104 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.BajaStockCabezal.alLineas -> bajastocklinea
23:17:05,104 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.TransferenciaStockCabezal.alLineas -> transferenciastocklinea
23:17:05,105 INFO HbmBinder:2404 - Mapping collection: gama.nucleo.formularios.ParteProduccionCabezal.alLineas -> ParteProduccionLinea
23:17:05,116 INFO DriverManagerConnectionProvider:64 - Using Hibernate built-in connection pool (not for production use!)
23:17:05,117 INFO DriverManagerConnectionProvider:65 - Hibernate connection pool size: 20
23:17:05,117 INFO DriverManagerConnectionProvider:68 - autocommit mode: false
23:17:05,118 INFO DriverManagerConnectionProvider:103 - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost/sizian_gama
23:17:05,119 INFO DriverManagerConnectionProvider:109 - connection properties: {user=sizian_gama, password=****}
23:17:05,128 INFO SettingsFactory:116 - RDBMS: MySQL, version: 5.0.91-community
23:17:05,129 INFO SettingsFactory:117 - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.13 ( Revision: ${bzr.revision-id} )
23:17:05,152 INFO Dialect:175 - Using dialect: org.hibernate.dialect.MySQLDialect
23:17:05,157 INFO TransactionFactoryFactory:59 - Using default transaction strategy (direct JDBC transactions)
23:17:05,160 INFO TransactionManagerLookupFactory:80 - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
23:17:05,160 INFO SettingsFactory:170 - Automatic flush during beforeCompletion(): disabled
23:17:05,161 INFO SettingsFactory:174 - Automatic session close at end of transaction: disabled
23:17:05,161 INFO SettingsFactory:181 - JDBC batch size: 15
23:17:05,161 INFO SettingsFactory:184 - JDBC batch updates for versioned data: disabled
23:17:05,162 INFO SettingsFactory:189 - Scrollable result sets: enabled
23:17:05,163 INFO SettingsFactory:197 - JDBC3 getGeneratedKeys(): enabled
23:17:05,163 INFO SettingsFactory:205 - Connection release mode: auto
23:17:05,164 INFO SettingsFactory:229 - Maximum outer join fetch depth: 2
23:17:05,164 INFO SettingsFactory:232 - Default batch fetch size: 1
23:17:05,165 INFO SettingsFactory:236 - Generate SQL with comments: disabled
23:17:05,165 INFO SettingsFactory:240 - Order SQL updates by primary key: disabled
23:17:05,165 INFO SettingsFactory:244 - Order SQL inserts for batching: disabled
23:17:05,165 INFO SettingsFactory:420 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
23:17:05,168 INFO ASTQueryTranslatorFactory:47 - Using ASTQueryTranslatorFactory
23:17:05,169 INFO SettingsFactory:252 - Query language substitutions: {}
23:17:05,169 INFO SettingsFactory:257 - JPA-QL strict compliance: disabled
23:17:05,169 INFO SettingsFactory:262 - Second-level cache: enabled
23:17:05,170 INFO SettingsFactory:266 - Query cache: disabled
23:17:05,170 INFO SettingsFactory:405 - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
23:17:05,170 INFO SettingsFactory:276 - Optimize cache for minimal puts: disabled
23:17:05,171 INFO SettingsFactory:285 - Structured second-level cache entries: disabled
23:17:05,176 INFO SettingsFactory:305 - Echoing all SQL to stdout
23:17:05,177 INFO SettingsFactory:314 - Statistics: disabled
23:17:05,177 INFO SettingsFactory:318 - Deleted entity synthetic identifier rollback: disabled
23:17:05,177 INFO SettingsFactory:333 - Default entity-mode: pojo
23:17:05,178 INFO SettingsFactory:337 - Named query checking : enabled
23:17:05,251 INFO SessionFactoryImpl:187 - building session factory
23:17:06,391 INFO SessionFactoryObjectFactory:105 - Not binding factory to JNDI, no JNDI name configured


thanks in advance
Fabio


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.