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 1: | Linha 1: | ||
Embedded NoSQL: | Embedded NoSQL: | ||
=JAVA= | =JAVA= | ||
*[https://github.com/dizitart/nitrite-database Nitrite Database] | |||
*[http://jsondb.io/ JsonDB:] | |||
==[https://www.baeldung.com/spring-boot-h2-database H2]== | ==[https://www.baeldung.com/spring-boot-h2-database H2]== | ||
application.properties | application.properties | ||
Linha 15: | Linha 15: | ||
*http://localhost:8080/h2-console | *http://localhost:8080/h2-console | ||
=JAVAScript= | =JAVAScript= | ||
*[https://www.npmjs.com/package/ultradb UltraDb] | |||
*[https://github.com/petersirka/nosql Node.js NoSQL embedded database] |
Edição das 19h17min 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