Skip to content

Instantly share code, notes, and snippets.

View DLucasBR's full-sized avatar

Daniel Lucas DLucasBR

  • Araripina
View GitHub Profile
@DLucasBR
DLucasBR / pom.xml
Created May 17, 2018 13:36
Maven dependencies for hibernate
<!-- Núcleo do Hibernate -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.2.3.Final</version>
<scope>compile</scope>
</dependency>
<!-- Implementação de EntityManager da JPA -->
<dependency>
@DLucasBR
DLucasBR / persistence.xml
Created May 17, 2018 13:31
persistence.xml do projeto. Hibernate não conecta MySQL
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0"
xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="PatentePI">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/sgpatentes?useTimezone=true&serverTimezone=UTC" />
@DLucasBR
DLucasBR / StackTrace
Last active May 17, 2018 13:30
Stack trace of my aplicattion using Hibernate
2018-05-16 20:16:27,420 INFO [org.hibernate.validator.internal.util.Version] HV000001: Hibernate Validator 5.0.1.Final
mai 16, 2018 8:16:28 PM org.primefaces.webapp.PostConstructApplicationEventListener processEvent
INFORMAÇÕES: Running on PrimeFaces 6.1
mai 16, 2018 8:16:28 PM org.omnifaces.eventlistener.VersionLoggerEventListener processEvent
INFORMAÇÕES: Using OmniFaces version 1.5
mai 16, 2018 8:16:28 PM org.apache.coyote.AbstractProtocol start
INFORMAÇÕES: Starting ProtocolHandler ["http-bio-8080"]
mai 16, 2018 8:16:28 PM org.apache.coyote.AbstractProtocol start
INFORMAÇÕES: Starting ProtocolHandler ["ajp-bio-8009"]
mai 16, 2018 8:16:28 PM org.apache.catalina.startup.Catalina start