Guest User

null

a guest
Mar 23rd, 2019
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 229.46 KB | None | 0 0
  1. :: Spring Boot :: (v2.1.3.RELEASE)
  2.  
  3. 2019-03-23 18:25:29.921 INFO 10004 --- [ main] c.d.recipes.SpringRecipesApplication : Starting SpringRecipesApplication on DESKTOP-307UQ0E with PID 10004 (C:\Users\Miszcz\IdeaProjects\spring-recipes\target\classes started by Miszcz in C:\Users\Miszcz\IdeaProjects\spring-recipes)
  4. 2019-03-23 18:25:29.921 INFO 10004 --- [ main] c.d.recipes.SpringRecipesApplication : No active profile set, falling back to default profiles: default
  5. 2019-03-23 18:25:31.095 INFO 10004 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
  6. 2019-03-23 18:25:31.179 INFO 10004 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 66ms. Found 5 repository interfaces.
  7. 2019-03-23 18:25:31.443 INFO 10004 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$9f8ba771] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8. 2019-03-23 18:25:31.685 INFO 10004 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
  9. 2019-03-23 18:25:31.704 INFO 10004 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  10. 2019-03-23 18:25:31.704 INFO 10004 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.16]
  11. 2019-03-23 18:25:31.704 INFO 10004 --- [ main] o.a.catalina.core.AprLifecycleListener : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [C:\Program Files\Java\jdk-10.0.2\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Users\Miszcz\AppData\Local\Microsoft\WindowsApps;C:\Users\Miszcz\AppData\Local\GitHubDesktop\bin;.]
  12. 2019-03-23 18:25:31.782 INFO 10004 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  13. 2019-03-23 18:25:31.782 INFO 10004 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1798 ms
  14. 2019-03-23 18:25:31.897 INFO 10004 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
  15. 2019-03-23 18:25:32.002 INFO 10004 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
  16. 2019-03-23 18:25:32.032 INFO 10004 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [
  17. name: default
  18. ...]
  19. 2019-03-23 18:25:32.079 INFO 10004 --- [ main] org.hibernate.Version : HHH000412: Hibernate Core {5.3.7.Final}
  20. 2019-03-23 18:25:32.079 INFO 10004 --- [ main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found
  21. 2019-03-23 18:25:32.180 INFO 10004 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.0.4.Final}
  22. 2019-03-23 18:25:32.265 INFO 10004 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
  23. 2019-03-23 18:25:32.843 INFO 10004 --- [ main] o.h.t.schema.internal.SchemaCreatorImpl : HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@30e143ff'
  24. 2019-03-23 18:25:32.859 INFO 10004 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
  25. 2019-03-23 18:25:33.312 INFO 10004 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
  26. 2019-03-23 18:25:33.343 WARN 10004 --- [ main] aWebConfiguration$JpaWebMvcConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
  27. 2019-03-23 18:25:33.515 INFO 10004 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
  28. 2019-03-23 18:25:33.515 INFO 10004 --- [ main] c.d.recipes.SpringRecipesApplication : Started SpringRecipesApplication in 4.022 seconds (JVM running for 5.154)
  29. 2019-03-23 18:25:37.507 INFO 10004 --- [nio-8080-exec-3] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  30. 2019-03-23 18:25:37.508 INFO 10004 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  31. 2019-03-23 18:25:37.514 INFO 10004 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Completed initialization in 6 ms
  32. 2019-03-23 18:25:37.557 INFO 10004 --- [nio-8080-exec-3] o.h.h.i.QueryTranslatorFactoryInitiator : HHH000397: Using ASTQueryTranslatorFactory
  33. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4bf8f4fe<rs=HikariProxyResultSet@1242467461 wrapping rs338: null>
  34. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@47ed4a7e<rs=HikariProxyResultSet@955428489 wrapping rs345: null>
  35. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@71dd1c79<rs=HikariProxyResultSet@2120226058 wrapping rs413: null>
  36. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7d7612bf<rs=HikariProxyResultSet@583691917 wrapping rs379: null>
  37. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@71a546eb<rs=HikariProxyResultSet@1750172434 wrapping rs259: null>
  38. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5c365c1b<rs=HikariProxyResultSet@857171476 wrapping rs162: null>
  39. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4511ad30<rs=HikariProxyResultSet@1615989780 wrapping rs171: null>
  40. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@83fbcc7<rs=HikariProxyResultSet@178637332 wrapping rs357: null>
  41. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@53763135<rs=HikariProxyResultSet@218362392 wrapping rs246: null>
  42. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3dce79c4<rs=HikariProxyResultSet@965971480 wrapping rs322: null>
  43. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@75fe3b60<rs=HikariProxyResultSet@714323484 wrapping rs373: null>
  44. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@d2789c<rs=HikariProxyResultSet@1088421533 wrapping rs366: null>
  45. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@624f1e2a<rs=HikariProxyResultSet@1544492834 wrapping rs304: null>
  46. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2c814bfe<rs=HikariProxyResultSet@511791523 wrapping rs136: null>
  47. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@28a04035<rs=HikariProxyResultSet@1770077732 wrapping rs203: null>
  48. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3b25db25<rs=HikariProxyResultSet@807652259 wrapping rs233: null>
  49. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@21812c25<rs=HikariProxyResultSet@791919910 wrapping rs327: null>
  50. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7f94d50<rs=HikariProxyResultSet@2044051875 wrapping rs333: null>
  51. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2df21472<rs=HikariProxyResultSet@550038568 wrapping rs178: null>
  52. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@381b1e1a<rs=HikariProxyResultSet@1471608489 wrapping rs187: null>
  53. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@10d3fd38<rs=HikariProxyResultSet@376542889 wrapping rs409: null>
  54. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5d0da1bf<rs=HikariProxyResultSet@650657836 wrapping rs264: null>
  55. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@60e17fe8<rs=HikariProxyResultSet@144816301 wrapping rs288: null>
  56. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@ea4620<rs=HikariProxyResultSet@1195631152 wrapping rs135: null>
  57. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@f5f4138<rs=HikariProxyResultSet@479343793 wrapping rs368: null>
  58. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3f6f0935<rs=HikariProxyResultSet@827461938 wrapping rs156: null>
  59. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@549a3f0f<rs=HikariProxyResultSet@939612853 wrapping rs274: null>
  60. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@613a8fa<rs=HikariProxyResultSet@1525735863 wrapping rs181: null>
  61. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@73307f81<rs=HikariProxyResultSet@1930130488 wrapping rs281: null>
  62. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@34d1f673<rs=HikariProxyResultSet@794192444 wrapping rs323: null>
  63. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3136c5a1<rs=HikariProxyResultSet@1951909057 wrapping rs129: null>
  64. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2af9ef05<rs=HikariProxyResultSet@1012765889 wrapping rs286: null>
  65. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5ac541ac<rs=HikariProxyResultSet@840781896 wrapping rs172: null>
  66. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@619c46e9<rs=HikariProxyResultSet@789170889 wrapping rs217: null>
  67. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@66009cb6<rs=HikariProxyResultSet@965040458 wrapping rs125: null>
  68. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3e4c6b4<rs=HikariProxyResultSet@387551179 wrapping rs224: null>
  69. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@735c3f45<rs=HikariProxyResultSet@1325658184 wrapping rs400: null>
  70. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@707484c9<rs=HikariProxyResultSet@404582480 wrapping rs279: null>
  71. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1273435d<rs=HikariProxyResultSet@1660286298 wrapping rs179: null>
  72. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3707e6c1<rs=HikariProxyResultSet@229580767 wrapping rs382: null>
  73. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@25b35173<rs=HikariProxyResultSet@1714236512 wrapping rs292: null>
  74. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7135cbc0<rs=HikariProxyResultSet@2023316709 wrapping rs168: null>
  75. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@79541710<rs=HikariProxyResultSet@1858482917 wrapping rs344: null>
  76. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@716dd715<rs=HikariProxyResultSet@1317115879 wrapping rs275: null>
  77. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4eea3882<rs=HikariProxyResultSet@2126358378 wrapping rs194: null>
  78. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@11de9154<rs=HikariProxyResultSet@1076140906 wrapping rs276: null>
  79. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@486be8e8<rs=HikariProxyResultSet@54062833 wrapping rs201: null>
  80. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@57214b8f<rs=HikariProxyResultSet@1333910257 wrapping rs231: null>
  81. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@481057c1<rs=HikariProxyResultSet@300974450 wrapping rs359: null>
  82. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2da12ba6<rs=HikariProxyResultSet@1836363380 wrapping rs310: null>
  83. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3a9aaa52<rs=HikariProxyResultSet@2135568758 wrapping rs325: null>
  84. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@673ae3bd<rs=HikariProxyResultSet@1381524854 wrapping rs372: null>
  85. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2dde0ec4<rs=HikariProxyResultSet@1121646712 wrapping rs188: null>
  86. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@906fcc2<rs=HikariProxyResultSet@1961310719 wrapping rs297: null>
  87. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@66211f8a<rs=HikariProxyResultSet@1757055745 wrapping rs358: null>
  88. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@56363ff8<rs=HikariProxyResultSet@547372930 wrapping rs402: null>
  89. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@bc3b3d4<rs=HikariProxyResultSet@734277893 wrapping rs406: null>
  90. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@359dbe82<rs=HikariProxyResultSet@1650605575 wrapping rs174: null>
  91. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5b2e3af4<rs=HikariProxyResultSet@158001800 wrapping rs142: null>
  92. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3c001796<rs=HikariProxyResultSet@24151696 wrapping rs130: null>
  93. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2a4b5ed1<rs=HikariProxyResultSet@665269650 wrapping rs164: null>
  94. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@727a9cb4<rs=HikariProxyResultSet@1652117394 wrapping rs223: null>
  95. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5829f195<rs=HikariProxyResultSet@1309054100 wrapping rs312: null>
  96. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@64a9f1a1<rs=HikariProxyResultSet@2120877462 wrapping rs211: null>
  97. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@14648633<rs=HikariProxyResultSet@516282008 wrapping rs165: null>
  98. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@325d3737<rs=HikariProxyResultSet@1285314712 wrapping rs429: null>
  99. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@256fcdb0<rs=HikariProxyResultSet@434577818 wrapping rs369: null>
  100. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@ee00445<rs=HikariProxyResultSet@971509787 wrapping rs214: null>
  101. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3e054eb4<rs=HikariProxyResultSet@1889257628 wrapping rs124: null>
  102. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@653a32cc<rs=HikariProxyResultSet@2074990748 wrapping rs298: null>
  103. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3ee37196<rs=HikariProxyResultSet@1661149211 wrapping rs349: null>
  104. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@302f8823<rs=HikariProxyResultSet@779668511 wrapping rs151: null>
  105. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@24cb007c<rs=HikariProxyResultSet@721089567 wrapping rs339: null>
  106. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@10d3fa7b<rs=HikariProxyResultSet@1713993251 wrapping rs417: null>
  107. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@35194636<rs=HikariProxyResultSet@455127716 wrapping rs230: null>
  108. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@79bbbe26<rs=HikariProxyResultSet@1538863655 wrapping rs218: null>
  109. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@50f898d<rs=HikariProxyResultSet@1244507433 wrapping rs186: null>
  110. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@a00bb75<rs=HikariProxyResultSet@1724836266 wrapping rs159: null>
  111. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@75d774f5<rs=HikariProxyResultSet@599065643 wrapping rs126: null>
  112. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@51b9bee7<rs=HikariProxyResultSet@539628329 wrapping rs243: null>
  113. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@280316bc<rs=HikariProxyResultSet@682132906 wrapping rs265: null>
  114. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2757cbda<rs=HikariProxyResultSet@1438085034 wrapping rs316: null>
  115. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@69e96319<rs=HikariProxyResultSet@1095437484 wrapping rs422: null>
  116. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@753bb645<rs=HikariProxyResultSet@1429174448 wrapping rs393: null>
  117. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@453df8a8<rs=HikariProxyResultSet@287998128 wrapping rs428: null>
  118. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5cadf2ce<rs=HikariProxyResultSet@1389082034 wrapping rs263: null>
  119. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7efea3e9<rs=HikariProxyResultSet@932152883 wrapping rs170: null>
  120. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@56dfabed<rs=HikariProxyResultSet@909253042 wrapping rs269: null>
  121. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7c0de126<rs=HikariProxyResultSet@1067708979 wrapping rs380: null>
  122. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4f0557eb<rs=HikariProxyResultSet@803798841 wrapping rs146: null>
  123. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@44ef5409<rs=HikariProxyResultSet@1225758521 wrapping rs374: null>
  124. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6fc41fba<rs=HikariProxyResultSet@1435589949 wrapping rs244: null>
  125. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7cd3d7b5<rs=HikariProxyResultSet@1604270014 wrapping rs196: null>
  126. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@190c7dcb<rs=HikariProxyResultSet@451891646 wrapping rs271: null>
  127. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@277d3dff<rs=HikariProxyResultSet@2081934145 wrapping rs232: null>
  128. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@688bdf65<rs=HikariProxyResultSet@717078083 wrapping rs209: null>
  129. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@a87c3be<rs=HikariProxyResultSet@1962899011 wrapping rs364: null>
  130. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@709f0500<rs=HikariProxyResultSet@714976069 wrapping rs216: null>
  131. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3e434c29<rs=HikariProxyResultSet@572545353 wrapping rs189: null>
  132. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@805dc73<rs=HikariProxyResultSet@1148420937 wrapping rs296: null>
  133. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3cab64fe<rs=HikariProxyResultSet@1252380235 wrapping rs245: null>
  134. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3414c16e<rs=HikariProxyResultSet@1868977356 wrapping rs326: null>
  135. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1092f1c1<rs=HikariProxyResultSet@128805967 wrapping rs346: null>
  136. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@36d251e4<rs=HikariProxyResultSet@1593517264 wrapping rs361: null>
  137. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@51b95f54<rs=HikariProxyResultSet@69499729 wrapping rs206: null>
  138. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@43b4fbbc<rs=HikariProxyResultSet@955046737 wrapping rs347: null>
  139. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@442f16f2<rs=HikariProxyResultSet@1281071445 wrapping rs311: null>
  140. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@605622e2<rs=HikariProxyResultSet@1022411480 wrapping rs127: null>
  141. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7b8e8243<rs=HikariProxyResultSet@1125750488 wrapping rs154: null>
  142. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1f03ff95<rs=HikariProxyResultSet@1652420445 wrapping rs425: null>
  143. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2327f201<rs=HikariProxyResultSet@374708190 wrapping rs251: null>
  144. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@723785b5<rs=HikariProxyResultSet@546165343 wrapping rs242: null>
  145. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7da48d2a<rs=HikariProxyResultSet@845127263 wrapping rs388: null>
  146. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7ddb2a5c<rs=HikariProxyResultSet@279749473 wrapping rs157: null>
  147. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6170781c<rs=HikariProxyResultSet@2046280545 wrapping rs180: null>
  148. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2fa453aa<rs=HikariProxyResultSet@1129054432 wrapping rs419: null>
  149. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@763046a9<rs=HikariProxyResultSet@1639087461 wrapping rs204: null>
  150. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@529d0bf9<rs=HikariProxyResultSet@1569781734 wrapping rs240: null>
  151. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@304f292e<rs=HikariProxyResultSet@465788648 wrapping rs147: null>
  152. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3d7b158e<rs=HikariProxyResultSet@1609000809 wrapping rs177: null>
  153. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@498a1986<rs=HikariProxyResultSet@1731919209 wrapping rs207: null>
  154. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@73f2018d<rs=HikariProxyResultSet@862655720 wrapping rs384: null>
  155. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3abd5084<rs=HikariProxyResultSet@1630762220 wrapping rs272: null>
  156. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5f8fe538<rs=HikariProxyResultSet@145567726 wrapping rs285: null>
  157. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@46509166<rs=HikariProxyResultSet@201992303 wrapping rs273: null>
  158. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@254d0e48<rs=HikariProxyResultSet@1933102703 wrapping rs363: null>
  159. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@75a45315<rs=HikariProxyResultSet@1958355055 wrapping rs377: null>
  160. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@55a2debc<rs=HikariProxyResultSet@1293621746 wrapping rs182: null>
  161. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@17bbbecf<rs=HikariProxyResultSet@468709870 wrapping rs385: null>
  162. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5a49cd3e<rs=HikariProxyResultSet@1811839986 wrapping rs395: null>
  163. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@d221199<rs=HikariProxyResultSet@2089547637 wrapping rs123: null>
  164. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4eb669bf<rs=HikariProxyResultSet@339412853 wrapping rs412: null>
  165. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@431eb60<rs=HikariProxyResultSet@742671096 wrapping rs416: null>
  166. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1085e6e5<rs=HikariProxyResultSet@2135638522 wrapping rs222: null>
  167. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@db693b5<rs=HikariProxyResultSet@932559866 wrapping rs152: null>
  168. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@70b0e82d<rs=HikariProxyResultSet@1765583354 wrapping rs166: null>
  169. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7bd167b0<rs=HikariProxyResultSet@1270479100 wrapping rs167: null>
  170. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@445c14e1<rs=HikariProxyResultSet@299471483 wrapping rs192: null>
  171. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7d4e0ce4<rs=HikariProxyResultSet@570888577 wrapping rs319: null>
  172. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@a4872e0<rs=HikariProxyResultSet@2104753924 wrapping rs381: null>
  173. 2019-03-23 18:25:37.949 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7a5468fe<rs=HikariProxyResultSet@2125944197 wrapping rs290: null>
  174. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5e0b8049<rs=HikariProxyResultSet@1013201797 wrapping rs293: null>
  175. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@532f9e40<rs=HikariProxyResultSet@363575560 wrapping rs160: null>
  176. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1a3929b7<rs=HikariProxyResultSet@625248520 wrapping rs280: null>
  177. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@43f3a196<rs=HikariProxyResultSet@199847563 wrapping rs371: null>
  178. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@41787869<rs=HikariProxyResultSet@1134865676 wrapping rs169: null>
  179. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6e0a3398<rs=HikariProxyResultSet@976745357 wrapping rs260: null>
  180. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3dadcb7f<rs=HikariProxyResultSet@1555345805 wrapping rs262: null>
  181. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@630c224d<rs=HikariProxyResultSet@1979027857 wrapping rs289: null>
  182. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6135a575<rs=HikariProxyResultSet@365478418 wrapping rs348: null>
  183. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5e1cdc38<rs=HikariProxyResultSet@819896467 wrapping rs236: null>
  184. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@db912b7<rs=HikariProxyResultSet@1671634067 wrapping rs238: null>
  185. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@fa54707<rs=HikariProxyResultSet@1051872149 wrapping rs278: null>
  186. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@43f7558b<rs=HikariProxyResultSet@35155478 wrapping rs367: null>
  187. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7bb2bcd1<rs=HikariProxyResultSet@273817880 wrapping rs331: null>
  188. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3e5b25ba<rs=HikariProxyResultSet@1745485979 wrapping rs261: null>
  189. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1be3c009<rs=HikariProxyResultSet@1396516124 wrapping rs144: null>
  190. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@624195f3<rs=HikariProxyResultSet@1143994140 wrapping rs336: null>
  191. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@c7be95e<rs=HikariProxyResultSet@781329051 wrapping rs403: null>
  192. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6bea7b9e<rs=HikariProxyResultSet@97551773 wrapping rs415: null>
  193. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6e0c1d62<rs=HikariProxyResultSet@547337117 wrapping rs423: null>
  194. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@cf35d<rs=HikariProxyResultSet@1110933796 wrapping rs212: null>
  195. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@536ecb1b<rs=HikariProxyResultSet@2092748197 wrapping rs198: null>
  196. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6b606c63<rs=HikariProxyResultSet@1862674599 wrapping rs270: null>
  197. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@65899b60<rs=HikariProxyResultSet@2001861545 wrapping rs132: null>
  198. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2f80a97<rs=HikariProxyResultSet@1736885673 wrapping rs239: null>
  199. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@276b2fc0<rs=HikariProxyResultSet@1981919020 wrapping rs314: null>
  200. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4f804c3a<rs=HikariProxyResultSet@1033351597 wrapping rs277: null>
  201. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@667b8c31<rs=HikariProxyResultSet@403845424 wrapping rs190: null>
  202. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@24158edb<rs=HikariProxyResultSet@667655730 wrapping rs149: null>
  203. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5afeb0b6<rs=HikariProxyResultSet@400644275 wrapping rs257: null>
  204. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1752d64f<rs=HikariProxyResultSet@1795861941 wrapping rs337: null>
  205. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2d72da90<rs=HikariProxyResultSet@727065654 wrapping rs220: null>
  206. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2599fab3<rs=HikariProxyResultSet@277448758 wrapping rs268: null>
  207. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@acd85b6<rs=HikariProxyResultSet@1146233910 wrapping rs398: null>
  208. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@b2cca0e<rs=HikariProxyResultSet@556859446 wrapping rs421: null>
  209. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@30b137a1<rs=HikariProxyResultSet@1303169723 wrapping rs208: null>
  210. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5a171f66<rs=HikariProxyResultSet@296537916 wrapping rs362: null>
  211. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3c91d1a7<rs=HikariProxyResultSet@1655049661 wrapping rs176: null>
  212. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@51800081<rs=HikariProxyResultSet@1163066305 wrapping rs153: null>
  213. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6835292f<rs=HikariProxyResultSet@609239235 wrapping rs141: null>
  214. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@abbe760<rs=HikariProxyResultSet@1158453443 wrapping rs210: null>
  215. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@38951379<rs=HikariProxyResultSet@27883332 wrapping rs252: null>
  216. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@69c098e2<rs=HikariProxyResultSet@1595340483 wrapping rs283: null>
  217. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@287da8a4<rs=HikariProxyResultSet@1802009029 wrapping rs315: null>
  218. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7d28ca2c<rs=HikariProxyResultSet@1623403715 wrapping rs376: null>
  219. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6db6002b<rs=HikariProxyResultSet@19192902 wrapping rs383: null>
  220. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5c82f7<rs=HikariProxyResultSet@846176072 wrapping rs394: null>
  221. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@45a122d0<rs=HikariProxyResultSet@1612169165 wrapping rs330: null>
  222. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7e63f9e2<rs=HikariProxyResultSet@650050126 wrapping rs253: null>
  223. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2309095d<rs=HikariProxyResultSet@522089679 wrapping rs254: null>
  224. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@47267cf1<rs=HikariProxyResultSet@1586341071 wrapping rs378: null>
  225. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@bdd6167<rs=HikariProxyResultSet@1693270993 wrapping rs356: null>
  226. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6a902517<rs=HikariProxyResultSet@372149842 wrapping rs287: null>
  227. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1b89af9<rs=HikariProxyResultSet@904945746 wrapping rs306: null>
  228. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@750dbfcb<rs=HikariProxyResultSet@1265374157 wrapping rs386: null>
  229. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@153b2e54<rs=HikariProxyResultSet@1860787661 wrapping rs427: null>
  230. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7ee80979<rs=HikariProxyResultSet@1587487576 wrapping rs258: null>
  231. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3bc23b0f<rs=HikariProxyResultSet@350482522 wrapping rs303: null>
  232. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@23a9285b<rs=HikariProxyResultSet@1326935904 wrapping rs282: null>
  233. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6f2cfbf4<rs=HikariProxyResultSet@2011503843 wrapping rs404: null>
  234. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@51b194a9<rs=HikariProxyResultSet@328413028 wrapping rs183: null>
  235. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7b81c7d3<rs=HikariProxyResultSet@844266598 wrapping rs305: null>
  236. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1180d308<rs=HikariProxyResultSet@1008401768 wrapping rs221: null>
  237. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@197b6997<rs=HikariProxyResultSet@90701801 wrapping rs128: null>
  238. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@44b2b2cd<rs=HikariProxyResultSet@1610861033 wrapping rs133: null>
  239. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@31785ad7<rs=HikariProxyResultSet@1971253866 wrapping rs145: null>
  240. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@26f7d763<rs=HikariProxyResultSet@418814699 wrapping rs158: null>
  241. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@648225fb<rs=HikariProxyResultSet@1136247785 wrapping rs227: null>
  242. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3577c77c<rs=HikariProxyResultSet@1626407534 wrapping rs122: null>
  243. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@462a8de7<rs=HikariProxyResultSet@1826678249 wrapping rs300: null>
  244. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5e7e168e<rs=HikariProxyResultSet@1200901488 wrapping rs143: null>
  245. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2b265d47<rs=HikariProxyResultSet@210873200 wrapping rs351: null>
  246. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@20e13378<rs=HikariProxyResultSet@460255346 wrapping rs237: null>
  247. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3236d736<rs=HikariProxyResultSet@2093286643 wrapping rs205: null>
  248. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1cd27d98<rs=HikariProxyResultSet@1897058281 wrapping rs389: null>
  249. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@507d720<rs=HikariProxyResultSet@593139439 wrapping rs420: null>
  250. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2cd45e0b<rs=HikariProxyResultSet@1105310064 wrapping rs426: null>
  251. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@28dfa3c0<rs=HikariProxyResultSet@718077175 wrapping rs155: null>
  252. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@276e25fe<rs=HikariProxyResultSet@1589947768 wrapping rs396: null>
  253. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1ceb58e4<rs=HikariProxyResultSet@1847365625 wrapping rs291: null>
  254. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@12c16974<rs=HikariProxyResultSet@1597292666 wrapping rs407: null>
  255. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@47d5194f<rs=HikariProxyResultSet@784690427 wrapping rs410: null>
  256. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1142859e<rs=HikariProxyResultSet@1979241340 wrapping rs340: null>
  257. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@57a8c32a<rs=HikariProxyResultSet@67738621 wrapping rs173: null>
  258. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4ebb8a62<rs=HikariProxyResultSet@1651334782 wrapping rs250: null>
  259. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@214bed9b<rs=HikariProxyResultSet@815060094 wrapping rs284: null>
  260. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@24a0f259<rs=HikariProxyResultSet@1911721215 wrapping rs354: null>
  261. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3500c474<rs=HikariProxyResultSet@1084759553 wrapping rs295: null>
  262. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@27faa02c<rs=HikariProxyResultSet@1690892289 wrapping rs375: null>
  263. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@59a3a67d<rs=HikariProxyResultSet@1281627012 wrapping rs321: null>
  264. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7a32b52a<rs=HikariProxyResultSet@978266246 wrapping rs195: null>
  265. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@49a2fd7c<rs=HikariProxyResultSet@1112103945 wrapping rs213: null>
  266. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3b2bdfa4<rs=HikariProxyResultSet@13978121 wrapping rs341: null>
  267. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7f7f16f2<rs=HikariProxyResultSet@1986451344 wrapping rs140: null>
  268. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@100b67d2<rs=HikariProxyResultSet@699156626 wrapping rs256: null>
  269. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4e9c21b2<rs=HikariProxyResultSet@1590317460 wrapping rs266: null>
  270. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2baf013a<rs=HikariProxyResultSet@50714778 wrapping rs352: null>
  271. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2ce05a3b<rs=HikariProxyResultSet@777354523 wrapping rs225: null>
  272. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@671e9d82<rs=HikariProxyResultSet@237925276 wrapping rs235: null>
  273. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4820a162<rs=HikariProxyResultSet@1697005085 wrapping rs191: null>
  274. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1b55df8d<rs=HikariProxyResultSet@2115536030 wrapping rs200: null>
  275. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@354a7f5e<rs=HikariProxyResultSet@1988713759 wrapping rs137: null>
  276. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@26ab16f8<rs=HikariProxyResultSet@687931296 wrapping rs255: null>
  277. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6bcd98fe<rs=HikariProxyResultSet@1800778527 wrapping rs320: null>
  278. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5e519bbd<rs=HikariProxyResultSet@1755144475 wrapping rs408: null>
  279. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3807bfa6<rs=HikariProxyResultSet@1827768611 wrapping rs307: null>
  280. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@46e57288<rs=HikariProxyResultSet@912264100 wrapping rs353: null>
  281. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@416808c2<rs=HikariProxyResultSet@110425125 wrapping rs150: null>
  282. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@13b6ff21<rs=HikariProxyResultSet@859079846 wrapping rs163: null>
  283. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1649887e<rs=HikariProxyResultSet@219243686 wrapping rs184: null>
  284. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7bd5c90d<rs=HikariProxyResultSet@1024593703 wrapping rs241: null>
  285. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7afae0ad<rs=HikariProxyResultSet@113631273 wrapping rs175: null>
  286. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5e114724<rs=HikariProxyResultSet@1873517738 wrapping rs134: null>
  287. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4413ee0<rs=HikariProxyResultSet@240837290 wrapping rs301: null>
  288. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@518902c4<rs=HikariProxyResultSet@301056166 wrapping rs350: null>
  289. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7c5b7fd0<rs=HikariProxyResultSet@550414373 wrapping rs365: null>
  290. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@28a73f18<rs=HikariProxyResultSet@1565161646 wrapping rs308: null>
  291. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@251ca2d2<rs=HikariProxyResultSet@87988910 wrapping rs334: null>
  292. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3c9a0b97<rs=HikariProxyResultSet@900083499 wrapping rs391: null>
  293. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1b98462b<rs=HikariProxyResultSet@1727731761 wrapping rs193: null>
  294. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@a56e5bf<rs=HikariProxyResultSet@1348030001 wrapping rs397: null>
  295. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@4a1ccc15<rs=HikariProxyResultSet@968054067 wrapping rs299: null>
  296. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@26b6a072<rs=HikariProxyResultSet@2077786165 wrapping rs309: null>
  297. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7fc60391<rs=HikariProxyResultSet@1129970620 wrapping rs414: null>
  298. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@42806acb<rs=HikariProxyResultSet@1434475069 wrapping rs185: null>
  299. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6ed07aea<rs=HikariProxyResultSet@775176382 wrapping rs418: null>
  300. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7d76f272<rs=HikariProxyResultSet@1704250687 wrapping rs392: null>
  301. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@32e3acc6<rs=HikariProxyResultSet@92694593 wrapping rs226: null>
  302. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@73744e63<rs=HikariProxyResultSet@802840770 wrapping rs355: null>
  303. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1e9e6dcd<rs=HikariProxyResultSet@1184085315 wrapping rs313: null>
  304. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@54b1f90e<rs=HikariProxyResultSet@2103792580 wrapping rs228: null>
  305. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7b1beac2<rs=HikariProxyResultSet@2006190278 wrapping rs234: null>
  306. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2acdb494<rs=HikariProxyResultSet@2112590151 wrapping rs249: null>
  307. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@47505405<rs=HikariProxyResultSet@1707796295 wrapping rs387: null>
  308. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1cf2bc68<rs=HikariProxyResultSet@898271817 wrapping rs324: null>
  309. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@381b08ce<rs=HikariProxyResultSet@1631100102 wrapping rs405: null>
  310. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7fb5624d<rs=HikariProxyResultSet@2102937036 wrapping rs318: null>
  311. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3a00e1c2<rs=HikariProxyResultSet@851652302 wrapping rs430: null>
  312. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@33980b16<rs=HikariProxyResultSet@118246735 wrapping rs424: null>
  313. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@53a538d3<rs=HikariProxyResultSet@1344030672 wrapping rs215: null>
  314. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7d68fe0<rs=HikariProxyResultSet@1856621520 wrapping rs219: null>
  315. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3ae57029<rs=HikariProxyResultSet@941294032 wrapping rs229: null>
  316. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@49560cd8<rs=HikariProxyResultSet@1606139219 wrapping rs148: null>
  317. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@33cfc681<rs=HikariProxyResultSet@1545176532 wrapping rs131: null>
  318. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@d5f697<rs=HikariProxyResultSet@1658213973 wrapping rs247: null>
  319. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@11a0aa9c<rs=HikariProxyResultSet@53372497 wrapping rs248: null>
  320. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@686954bc<rs=HikariProxyResultSet@2040864720 wrapping rs302: null>
  321. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@255f7cfe<rs=HikariProxyResultSet@1380224593 wrapping rs329: null>
  322. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@a91578c<rs=HikariProxyResultSet@2146237529 wrapping rs199: null>
  323. 2019-03-23 18:25:37.964 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1e71f808<rs=HikariProxyResultSet@445512793 wrapping rs317: null>
  324. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@3c1f93ce<rs=HikariProxyResultSet@1495176023 wrapping rs335: null>
  325. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6279a03f<rs=HikariProxyResultSet@304474064 wrapping rs399: null>
  326. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@6254a6cb<rs=HikariProxyResultSet@404965086 wrapping rs342: null>
  327. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@73f4b331<rs=HikariProxyResultSet@235335523 wrapping rs332: null>
  328. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@33b5cf62<rs=HikariProxyResultSet@1120136422 wrapping rs401: null>
  329. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1ce2e973<rs=HikariProxyResultSet@51459431 wrapping rs294: null>
  330. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@5bc776da<rs=HikariProxyResultSet@1993143784 wrapping rs360: null>
  331. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@dfc2ba8<rs=HikariProxyResultSet@459127147 wrapping rs267: null>
  332. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@10af3baa<rs=HikariProxyResultSet@1886996077 wrapping rs161: null>
  333. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1b0df1bd<rs=HikariProxyResultSet@540691952 wrapping rs139: null>
  334. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7b1c35a0<rs=HikariProxyResultSet@1603174642 wrapping rs343: null>
  335. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1751e000<rs=HikariProxyResultSet@377028084 wrapping rs390: null>
  336. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@7ecafb2b<rs=HikariProxyResultSet@108649335 wrapping rs328: null>
  337. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@abe7d56<rs=HikariProxyResultSet@689260665 wrapping rs138: null>
  338. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@1015f894<rs=HikariProxyResultSet@1081480442 wrapping rs202: null>
  339. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@8dc4b76<rs=HikariProxyResultSet@1154581500 wrapping rs197: null>
  340. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@2166eae5<rs=HikariProxyResultSet@651634301 wrapping rs411: null>
  341. 2019-03-23 18:25:37.980 WARN 10004 --- [nio-8080-exec-3] o.h.e.loading.internal.LoadContexts : HHH000100: Fail-safe cleanup (collections) : org.hibernate.engine.loading.internal.CollectionLoadContext@58cb7752<rs=HikariProxyResultSet@128063871 wrapping rs370: null>
  342. 2019-03-23 18:25:37.997 ERROR 10004 --- [nio-8080-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Handler dispatch failed; nested exception is java.lang.StackOverflowError] with root cause
  343.  
  344. java.lang.StackOverflowError: null
  345. at java.base/java.lang.String.substring(String.java:1873) ~[na:na]
  346. at org.h2.command.Parser.read(Parser.java:3612) ~[h2-1.4.197.jar:1.4.197]
  347. at org.h2.command.Parser.readIf(Parser.java:3525) ~[h2-1.4.197.jar:1.4.197]
  348. at org.h2.command.Parser.readTerm(Parser.java:3094) ~[h2-1.4.197.jar:1.4.197]
  349. at org.h2.command.Parser.readFactor(Parser.java:2587) ~[h2-1.4.197.jar:1.4.197]
  350. at org.h2.command.Parser.readSum(Parser.java:2574) ~[h2-1.4.197.jar:1.4.197]
  351. at org.h2.command.Parser.readConcat(Parser.java:2544) ~[h2-1.4.197.jar:1.4.197]
  352. at org.h2.command.Parser.readCondition(Parser.java:2370) ~[h2-1.4.197.jar:1.4.197]
  353. at org.h2.command.Parser.readAnd(Parser.java:2342) ~[h2-1.4.197.jar:1.4.197]
  354. at org.h2.command.Parser.readExpression(Parser.java:2334) ~[h2-1.4.197.jar:1.4.197]
  355. at org.h2.command.Parser.parseSelectSimpleSelectPart(Parser.java:2245) ~[h2-1.4.197.jar:1.4.197]
  356. at org.h2.command.Parser.parseSelectSimple(Parser.java:2277) ~[h2-1.4.197.jar:1.4.197]
  357. at org.h2.command.Parser.parseSelectSub(Parser.java:2133) ~[h2-1.4.197.jar:1.4.197]
  358. at org.h2.command.Parser.parseSelectUnion(Parser.java:1946) ~[h2-1.4.197.jar:1.4.197]
  359. at org.h2.command.Parser.parseSelect(Parser.java:1919) ~[h2-1.4.197.jar:1.4.197]
  360. at org.h2.command.Parser.parsePrepared(Parser.java:463) ~[h2-1.4.197.jar:1.4.197]
  361. at org.h2.command.Parser.parse(Parser.java:335) ~[h2-1.4.197.jar:1.4.197]
  362. at org.h2.command.Parser.parse(Parser.java:307) ~[h2-1.4.197.jar:1.4.197]
  363. at org.h2.command.Parser.prepareCommand(Parser.java:278) ~[h2-1.4.197.jar:1.4.197]
  364. at org.h2.engine.Session.prepareLocal(Session.java:611) ~[h2-1.4.197.jar:1.4.197]
  365. at org.h2.engine.Session.prepareCommand(Session.java:549) ~[h2-1.4.197.jar:1.4.197]
  366. at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) ~[h2-1.4.197.jar:1.4.197]
  367. at org.h2.jdbc.JdbcPreparedStatement.<init>(JdbcPreparedStatement.java:76) ~[h2-1.4.197.jar:1.4.197]
  368. at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) ~[h2-1.4.197.jar:1.4.197]
  369. at com.zaxxer.hikari.pool.ProxyConnection.prepareStatement(ProxyConnection.java:311) ~[HikariCP-3.2.0.jar:na]
  370. at com.zaxxer.hikari.pool.HikariProxyConnection.prepareStatement(HikariProxyConnection.java) ~[HikariCP-3.2.0.jar:na]
  371. at org.hibernate.engine.jdbc.internal.StatementPreparerImpl$5.doPrepare(StatementPreparerImpl.java:146) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  372. at org.hibernate.engine.jdbc.internal.StatementPreparerImpl$StatementPreparationTemplate.prepareStatement(StatementPreparerImpl.java:172) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  373. at org.hibernate.engine.jdbc.internal.StatementPreparerImpl.prepareQueryStatement(StatementPreparerImpl.java:148) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  374. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.prepareQueryStatement(AbstractLoadPlanBasedLoader.java:226) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  375. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeQueryStatement(AbstractLoadPlanBasedLoader.java:190) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  376. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:121) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  377. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  378. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  379. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  380. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  381. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  382. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  383. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  384. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  385. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  386. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  387. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  388. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  389. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  390. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  391. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  392. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  393. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  394. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  395. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  396. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  397. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  398. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  399. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  400. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  401. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  402. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  403. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  404. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  405. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  406. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  407. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  408. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  409. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  410. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  411. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  412. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  413. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  414. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  415. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  416. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  417. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  418. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  419. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  420. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  421. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  422. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  423. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  424. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  425. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  426. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  427. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  428. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  429. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  430. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  431. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  432. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  433. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  434. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  435. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  436. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  437. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  438. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  439. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  440. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  441. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  442. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  443. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  444. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  445. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  446. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  447. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  448. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  449. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  450. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  451. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  452. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  453. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  454. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  455. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  456. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  457. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  458. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  459. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  460. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  461. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  462. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  463. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  464. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  465. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  466. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  467. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  468. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  469. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  470. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  471. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  472. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  473. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  474. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  475. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  476. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  477. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  478. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  479. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  480. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  481. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  482. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  483. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  484. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  485. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  486. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  487. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  488. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  489. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  490. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  491. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  492. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  493. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  494. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  495. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  496. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  497. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  498. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  499. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  500. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  501. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  502. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  503. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  504. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  505. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  506. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  507. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  508. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  509. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  510. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  511. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  512. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  513. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  514. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  515. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  516. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  517. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  518. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  519. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  520. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  521. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  522. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  523. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  524. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  525. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  526. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  527. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  528. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  529. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  530. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  531. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  532. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  533. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  534. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  535. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  536. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  537. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  538. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  539. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  540. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  541. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  542. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  543. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  544. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  545. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  546. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  547. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  548. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  549. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  550. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  551. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  552. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  553. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  554. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  555. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  556. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  557. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  558. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  559. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  560. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  561. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  562. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  563. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  564. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  565. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  566. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  567. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  568. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  569. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  570. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  571. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  572. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  573. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  574. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  575. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  576. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  577. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  578. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  579. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  580. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  581. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  582. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  583. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  584. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  585. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  586. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  587. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  588. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  589. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  590. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  591. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  592. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  593. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  594. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  595. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  596. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  597. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  598. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  599. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  600. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  601. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  602. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  603. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  604. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  605. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  606. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  607. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  608. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  609. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  610. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  611. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  612. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  613. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  614. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  615. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  616. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  617. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  618. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  619. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  620. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  621. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  622. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  623. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  624. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  625. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  626. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  627. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  628. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  629. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  630. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  631. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  632. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  633. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  634. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  635. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  636. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  637. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  638. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  639. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  640. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  641. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  642. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  643. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  644. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  645. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  646. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  647. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  648. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  649. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  650. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  651. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  652. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  653. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  654. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  655. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  656. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  657. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  658. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  659. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  660. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  661. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  662. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  663. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  664. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  665. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  666. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  667. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  668. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  669. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  670. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  671. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  672. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  673. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  674. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  675. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  676. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  677. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  678. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  679. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  680. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  681. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  682. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  683. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  684. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  685. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  686. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  687. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  688. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  689. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  690. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  691. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  692. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  693. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  694. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  695. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  696. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  697. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  698. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  699. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  700. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  701. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  702. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  703. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  704. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  705. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  706. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  707. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  708. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  709. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  710. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  711. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  712. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  713. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  714. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  715. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  716. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  717. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  718. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  719. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  720. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  721. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  722. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  723. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  724. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  725. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  726. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  727. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  728. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  729. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  730. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  731. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  732. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  733. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  734. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  735. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  736. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  737. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  738. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  739. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  740. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  741. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  742. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  743. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  744. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  745. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  746. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  747. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  748. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  749. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  750. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  751. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  752. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  753. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  754. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  755. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  756. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  757. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  758. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  759. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  760. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  761. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  762. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  763. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  764. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  765. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  766. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  767. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  768. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  769. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  770. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  771. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  772. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  773. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  774. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  775. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  776. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  777. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  778. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  779. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  780. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  781. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  782. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  783. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  784. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  785. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  786. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  787. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  788. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  789. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  790. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  791. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  792. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  793. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  794. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  795. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  796. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  797. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  798. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  799. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  800. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  801. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  802. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  803. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  804. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  805. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  806. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  807. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  808. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  809. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  810. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  811. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  812. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  813. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  814. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  815. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  816. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  817. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  818. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  819. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  820. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  821. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  822. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  823. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  824. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  825. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  826. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  827. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  828. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  829. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  830. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  831. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  832. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  833. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  834. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  835. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  836. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  837. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  838. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  839. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  840. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  841. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  842. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  843. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  844. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  845. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  846. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  847. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  848. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  849. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  850. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  851. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  852. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  853. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  854. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  855. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  856. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  857. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  858. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  859. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  860. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  861. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  862. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  863. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  864. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  865. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  866. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  867. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  868. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  869. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  870. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  871. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  872. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  873. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  874. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  875. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  876. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  877. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  878. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  879. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  880. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  881. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  882. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  883. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  884. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  885. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  886. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  887. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  888. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  889. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  890. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  891. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  892. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  893. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  894. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  895. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  896. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  897. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  898. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  899. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  900. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  901. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  902. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  903. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  904. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  905. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  906. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  907. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  908. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  909. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  910. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  911. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  912. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  913. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  914. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  915. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  916. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  917. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  918. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  919. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  920. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  921. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  922. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  923. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  924. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  925. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  926. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  927. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  928. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  929. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  930. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  931. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  932. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  933. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  934. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  935. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  936. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  937. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  938. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  939. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  940. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  941. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  942. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  943. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  944. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  945. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  946. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  947. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  948. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  949. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  950. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  951. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  952. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  953. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  954. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  955. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  956. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  957. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  958. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  959. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  960. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  961. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  962. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  963. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  964. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  965. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  966. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  967. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  968. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  969. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  970. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  971. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  972. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  973. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  974. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  975. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  976. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  977. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  978. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  979. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  980. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  981. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  982. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  983. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  984. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  985. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  986. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  987. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  988. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  989. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  990. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  991. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  992. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  993. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  994. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  995. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  996. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  997. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  998. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  999. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1000. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1001. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1002. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1003. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1004. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1005. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1006. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1007. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1008. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1009. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1010. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1011. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1012. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1013. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1014. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1015. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1016. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1017. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1018. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1019. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1020. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1021. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1022. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1023. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1024. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1025. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1026. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1027. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1028. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1029. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1030. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1031. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1032. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1033. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1034. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1035. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1036. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1037. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1038. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1039. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1040. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1041. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1042. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1043. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1044. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1045. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1046. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1047. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1048. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1049. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1050. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1051. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1052. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1053. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1054. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1055. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1056. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1057. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1058. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1059. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1060. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1061. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1062. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1063. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1064. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1065. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1066. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1067. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1068. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1069. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1070. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1071. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1072. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1073. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1074. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1075. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1076. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1077. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1078. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1079. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1080. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1081. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1082. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1083. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1084. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1085. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1086. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1087. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1088. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1089. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1090. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1091. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1092. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1093. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1094. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1095. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1096. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1097. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1098. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1099. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1100. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1101. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1102. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1103. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1104. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1105. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1106. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1107. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1108. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1109. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1110. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1111. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1112. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1113. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1114. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1115. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1116. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1117. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1118. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1119. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1120. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1121. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1122. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1123. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1124. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1125. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1126. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1127. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1128. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1129. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1130. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1131. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1132. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1133. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1134. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1135. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1136. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1137. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1138. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1139. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1140. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1141. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1142. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1143. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1144. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1145. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1146. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1147. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1148. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1149. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1150. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1151. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1152. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1153. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1154. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1155. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1156. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1157. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1158. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1159. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1160. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1161. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1162. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1163. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1164. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1165. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1166. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1167. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1168. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1169. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1170. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1171. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1172. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1173. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1174. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1175. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1176. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1177. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1178. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1179. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1180. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1181. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1182. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1183. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1184. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1185. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1186. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1187. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1188. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1189. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1190. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1191. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1192. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1193. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1194. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1195. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1196. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1197. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1198. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1199. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1200. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1201. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1202. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1203. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1204. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1205. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1206. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1207. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1208. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1209. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1210. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1211. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1212. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1213. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1214. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1215. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1216. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1217. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1218. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1219. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1220. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1221. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1222. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1223. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1224. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1225. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1226. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1227. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1228. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1229. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1230. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1231. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1232. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1233. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1234. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1235. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1236. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1237. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1238. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1239. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1240. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1241. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1242. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1243. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1244. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1245. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1246. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1247. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1248. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1249. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1250. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1251. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1252. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1253. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1254. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1255. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1256. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1257. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1258. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1259. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1260. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1261. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1262. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1263. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1264. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1265. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1266. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1267. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1268. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1269. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1270. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1271. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1272. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1273. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1274. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1275. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1276. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1277. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1278. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1279. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1280. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1281. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1282. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1283. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1284. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1285. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1286. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1287. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1288. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1289. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1290. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1291. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1292. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1293. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1294. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1295. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1296. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1297. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1298. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1299. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1300. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1301. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1302. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1303. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1304. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1305. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1306. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1307. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1308. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1309. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1310. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1311. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1312. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1313. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1314. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1315. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1316. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1317. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1318. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1319. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1320. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1321. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1322. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1323. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1324. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1325. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1326. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1327. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1328. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1329. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1330. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1331. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1332. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1333. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1334. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1335. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1336. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1337. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1338. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1339. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1340. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1341. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1342. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1343. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1344. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:236) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1345. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:223) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1346. at org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:196) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1347. at org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl.endLoading(CollectionReferenceInitializerImpl.java:154) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1348. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishLoadingCollections(AbstractRowReader.java:249) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1349. at org.hibernate.loader.plan.exec.process.internal.AbstractRowReader.finishUp(AbstractRowReader.java:212) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1350. at org.hibernate.loader.plan.exec.process.internal.ResultSetProcessorImpl.extractResults(ResultSetProcessorImpl.java:133) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1351. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:122) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1352. at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1353. at org.hibernate.loader.collection.plan.AbstractLoadPlanBasedCollectionInitializer.initialize(AbstractLoadPlanBasedCollectionInitializer.java:87) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1354. at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:691) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1355. at org.hibernate.event.internal.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:75) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1356. at org.hibernate.internal.SessionImpl.initializeCollection(SessionImpl.java:2246) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1357. at org.hibernate.collection.internal.AbstractPersistentCollection$4.doWork(AbstractPersistentCollection.java:580) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1358. at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:262) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1359. at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:576) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1360. at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:147) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1361. at org.hibernate.collection.internal.PersistentSet.hashCode(PersistentSet.java:458) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
  1362. at com.daniel.recipes.entity.Recipe.hashCode(Recipe.java:14) ~[classes/:na]
  1363. at com.daniel.recipes.entity.RecipeProduct.hashCode(RecipeProduct.java:11) ~[classes/:na]
  1364. at java.base/java.util.HashMap.hash(HashMap.java:339) ~[na:na]
  1365. at java.base/java.util.HashMap.put(HashMap.java:612) ~[na:na]
  1366. at java.base/java.util.HashSet.add(HashSet.java:220) ~[na:na]
  1367. at java.base/java.util.AbstractCollection.addAll(AbstractCollection.java:352) ~[na:na]
  1368. at org.hibernate.collection.internal.PersistentSet.endRead(PersistentSet.java:355) ~[hibernate-core-5.3.7.Final.jar:5.3.7.Final]
Add Comment
Please, Sign In to add comment