Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matheusbanqueiro/toy_landia


https://github.com/matheusbanqueiro/toy_landia

Last synced: 9 days ago
JSON representation

Awesome Lists containing this project

README

        

# Toy landia 🎁👶

This project uses lot of stuff as:

📌 [Tailwind](https://tailwindcss.com/)
📌 [Apache Tomcat 9.0](https://tomcat.apache.org/)
📌 [MySQL](https://www.mysql.com/)
📌 [MySQL Workbench](https://www.mysql.com/products/workbench/)
📌 [Eclipse JEE](https://www.eclipse.org/downloads/download.php?file=/oomph/epp/2023-09/R/eclipse-inst-jre-win64.exe)
📌 [Java](https://docs.oracle.com/en/java/)
📌 [JavaScript](https://developer.mozilla.org/pt-BR/docs/Web/JavaScript)

Enter the ConnectionFactory and put your mysql login and password:
```
String login = "root";
String senha = "Sua senha do banco de dados aqui";
String url = "jdbc:mysql://localhost:3306/lojaBrinquedos";

return DriverManager.getConnection(url, login, senha);
```