Advertisement
Guest User

Untitled

a guest
May 17th, 2016
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. This application has no explicit mapping for /error, so you are seeing this as a fallback.
  2.  
  3. Tue May 17 11:32:13 CEST 2016
  4. There was an unexpected error (type=Internal Server Error, status=500).
  5. Could not open JPA EntityManager for transaction; nested exception is javax.persistence.PersistenceException: org.hibernate.TransactionException: JDBC begin transaction failed:
  6.  
  7. spring.datasource.url=jdbc:mysql://localhost:3306/db_myfme?useUnicode=yes&characterEncoding=UTF-8&characterSetResults=UTF-8
  8. spring.datasource.username=root
  9. spring.datasource.password=
  10. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  11. spring.jpa.hibernate.ddl-auto=update
  12. spring.jpa.hibernate.naming-strategy=org.hibernate.cfg.ImprovedNamingStrategy
  13. spring.jpa.show-sql=true
  14. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
  15. spring.jpa.properties.hibernate.connection.characterEncoding=utf-8
  16. spring.jpa.properties.hibernate.connection.CharSet=utf-8
  17. spring.jpa.properties.hibernate.connection.useUnicode=true
  18.  
  19. server.tomcat.uri-encoding=UTF-8
  20.  
  21.  
  22. # HTTP encoding (HttpEncodingProperties)
  23. spring.http.encoding.charset=UTF-8
  24. spring.http.encoding.enabled=true
  25. spring.http.encoding.force=true
  26.  
  27. spring.mail.host=smtp.gmail.com
  28. spring.mail.username= capfme@gmail.com
  29. spring.mail.password= *******
  30.  
  31. spring.mail.properties.mail.smtp.auth=true
  32. spring.mail.properties.smtp.socketFactory.port=587
  33. spring.mail.properties.mail.smtp.socketFactory.class = javax.net.ssl.SSLSocketFactory
  34. spring.mail.properties.mail.smtp.ssl.enable = true
  35. spring.mail.properties.mail.smtp.socketFactory.fallback = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement