Banco de Dados: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
Linha 4: | Linha 4: | ||
*[http://jsondb.io/ JsonDB:] | *[http://jsondb.io/ JsonDB:] | ||
==[https://www.baeldung.com/spring-boot-h2-database H2]== | ==[https://www.baeldung.com/spring-boot-h2-database H2]== | ||
*[https://www.tutorialspoint.com/h2_database/index.htm H2 Database Tutorial] | |||
===application.properties=== | ===application.properties=== | ||
<syntaxhighlight lang=text> | <syntaxhighlight lang=text> |
Edição atual tal como às 19h30min de 5 de agosto de 2022
Embedded NoSQL:
JAVA
H2
application.properties
spring.datasource.generate-unique-name=false
spring.datasource.name=project
spring.datasource.username=sa
spring.datasource.password=password
spring.datasource.url=jdbc:h2:mem:project
spring.datasource.driverClassName=org.h2.Driver
List Tables
SHOW TABLES;