Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matheusbanqueiro/toy_landia
https://github.com/matheusbanqueiro/toy_landia
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/matheusbanqueiro/toy_landia
- Owner: matheusbanqueiro
- Created: 2023-10-22T01:14:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-16T14:32:54.000Z (about 1 year ago)
- Last Synced: 2024-11-16T16:08:33.408Z (2 months ago)
- Language: Java
- Size: 15.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```