Posts by Drayon Richard • 1 point
2 posts
-
-2
votes1
answer144
viewsA: What is the difference between REST API and CRUD?
CRUD is a set of primitive operations (mainly for static databases and data storage), while REST is a very high-level API style (mainly for web services and other "active systems)"). The first…
-
0
votes0
answers180
viewsQ: Springboot, Hibernate does not create tables in the H2 database
Hello I’m trying to use bank H2 with springboot, but tables are not being created in the database automatically. application properties #DataSource spring.datasource.url=jdbc:h2:file:~/fintech…