I came across one problem: HOW do I create program columns in a table in the database, if in the hibernate settings I need to map the table in advance? And I do not know how many columns in the table, as it dynamically changes. I need to delete columns and add, etc. And I don’t even imagine how to map an object to POJO. Who faced how you solved it?

  • The table should not be dynamically changed while the application is running - etki
  • To create the database structure, it is better to use migration systems such as Flaway, Liquibase, etc., rather than using Hibernate tools - bobzer
  • But after all, cassandra columns change dynamically. This is its principle. And can store up to 2 billion columns. Or I'm wrong? I need something similar, but not cassandra. - titsi

0