Advertisement
Guest User

Untitled

a guest
Sep 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. Set 14, 2018 2:06:37 PM org.hibernate.jpa.internal.util.LogHelper logPersistenceUnitInformation
  2. INFO: HHH000204: Processing PersistenceUnitInfo [
  3. name: XXX
  4. ...]
  5. Set 14, 2018 2:06:37 PM org.hibernate.Version logVersion
  6. INFO: HHH000412: Hibernate Core {5.1.16.Final}
  7. Set 14, 2018 2:06:37 PM org.hibernate.cfg.Environment <clinit>
  8. INFO: HHH000206: hibernate.properties not found
  9. Set 14, 2018 2:06:37 PM org.hibernate.cfg.Environment buildBytecodeProvider
  10. INFO: HHH000021: Bytecode provider name : javassist
  11. Set 14, 2018 2:06:37 PM org.hibernate.annotations.common.reflection.java.JavaReflectionManager <clinit>
  12. INFO: HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
  13. Set 14, 2018 2:06:37 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
  14. WARN: HHH10001002: Using Hibernate built-in connection pool (not for production use!)
  15. Set 14, 2018 2:06:37 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
  16. INFO: HHH10001005: using driver [com.microsoft.sqlserver.jdbc.SQLServerDriver] at URL [jdbc:sqlserver://localhost:1433;databaseName=DBTeste]
  17. Set 14, 2018 2:06:37 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
  18. INFO: HHH10001001: Connection properties: {user=sa, password=****}
  19. Set 14, 2018 2:06:37 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
  20. INFO: HHH10001003: Autocommit mode: false
  21. Set 14, 2018 2:06:37 PM org.hibernate.engine.jdbc.connections.internal.PooledConnections <init>
  22. INFO: HHH000115: Hibernate connection pool size: 20 (min=1)
  23. Set 14, 2018 2:35:48 PM org.hibernate.dialect.Dialect <init>
  24. INFO: HHH000400: Using dialect: org.hibernate.dialect.SQLServerDialect
  25. Set 14, 2018 2:35:49 PM org.hibernate.resource.transaction.backend.jdbc.internal.DdlTransactionIsolatorNonJtaImpl getIsolatedConnection
  26. INFO: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@72ca7fc] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode.
  27. Set 14, 2018 2:35:51 PM org.hibernate.hql.internal.QueryTranslatorFactoryInitiator initiateService
  28. INFO: HHH000397: Using ASTQueryTranslatorFactory
  29. Hibernate:
  30. insert
  31. into
  32. Conta
  33. (agencia, banco, numero, titular)
  34. values
  35. (?, ?, ?, ?)
  36.  
  37. Set 14, 2018 2:06:37 PM org.hibernate.engine.jdbc.connections.internal.PooledConnections <init>
  38. INFO: HHH000115: Hibernate connection pool size: 20 (min=1)
  39. Set 14, 2018 2:35:48 PM org.hibernate.dialect.Dialect <init>
  40.  
  41. <project xmlns="http://maven.apache.org/POM/4.0.0"
  42. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  43. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  44. <modelVersion>4.0.0</modelVersion>
  45.  
  46. <groupId>com.xxx</groupId>
  47. <artifactId>XXX</artifactId>
  48. <version>1.0</version>
  49. <packaging>jar</packaging>
  50.  
  51. <name>XXX</name>
  52. <url>http://xxxx.com</url>
  53.  
  54. <properties>
  55. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  56. <maven.compiler.target>1.7</maven.compiler.target>
  57. <maven.compiler.source>1.7</maven.compiler.source>
  58. </properties>
  59.  
  60. <dependencies>
  61.  
  62. <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager -->
  63. <dependency>
  64. <groupId>org.hibernate</groupId>
  65. <artifactId>hibernate-entitymanager</artifactId>
  66. <version>5.1.16.Final</version>
  67. </dependency>
  68.  
  69.  
  70. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/sqljdbc4 -->
  71. <dependency>
  72. <groupId>com.microsoft.sqlserver</groupId>
  73. <artifactId>sqljdbc4</artifactId>
  74. <version>4.0</version>
  75. </dependency>
  76.  
  77. </dependencies>
  78. <description>API teste</description>
  79. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement