Skip to content

Instantly share code, notes, and snippets.

View aevilesaguiar's full-sized avatar
🎯
Concentrando

Aevilés Aguiar Silva aevilesaguiar

🎯
Concentrando
View GitHub Profile
@aevilesaguiar
aevilesaguiar / eclipse-atalhos.md
Created January 3, 2023 11:39 — forked from fdrtec/eclipse-atalhos.md
eclipse: atalhos de teclado shortcuts
@aevilesaguiar
aevilesaguiar / persistence-jpa22-mysql8.xml
Created August 5, 2022 17:58 — forked from JorisNienkemper/persistence-jpa22-mysql8.xml
persistence.xml jpa version 2.2 hibernate mysql8
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_2.xsd"
version="2.2">
<persistence-unit name="kcPersistenceUnit" transaction-type="RESOURCE_LOCAL">
<description>
Persistence unit for the JPA tutorial of the Hibernate Getting Started Guide
</description>
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
@aevilesaguiar
aevilesaguiar / persistence.xml
Created August 5, 2022 13:15 — forked from halyph/persistence.xml
persistence.xml MySQL settings
<persistence 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"
version="2.0">
<persistence-unit name="org.hibernate.tutorial.jpa" transaction-type="RESOURCE_LOCAL">
<description>
Persistence unit for the JPA tutorial of the Hibernate Getting Started Guide
</description>
<provider>org.hibernate.ejb.HibernatePersistence</provider>
@aevilesaguiar
aevilesaguiar / git.md
Created July 29, 2022 16:51 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda