{"id":21456202,"url":"https://github.com/marcosfshirafuchi/santander-dev-week-2024","last_synced_at":"2026-04-12T22:54:25.008Z","repository":{"id":246294845,"uuid":"820665492","full_name":"marcosfshirafuchi/santander-dev-week-2024","owner":"marcosfshirafuchi","description":"RESTful API da Santander Dev Week 2024 construída em Java 21 com Spring Boot 3.","archived":false,"fork":false,"pushed_at":"2024-06-27T22:20:39.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-23T13:14:27.994Z","etag":null,"topics":["h2-database","java","openapi","poo","spring","spring-boot","springboot","swagger","swagger-ui"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marcosfshirafuchi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-26T23:55:44.000Z","updated_at":"2024-07-10T18:18:30.000Z","dependencies_parsed_at":"2024-06-27T03:28:57.258Z","dependency_job_id":null,"html_url":"https://github.com/marcosfshirafuchi/santander-dev-week-2024","commit_stats":null,"previous_names":["marcosfshirafuchi/santander-dev-week-2024"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosfshirafuchi%2Fsantander-dev-week-2024","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosfshirafuchi%2Fsantander-dev-week-2024/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosfshirafuchi%2Fsantander-dev-week-2024/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcosfshirafuchi%2Fsantander-dev-week-2024/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcosfshirafuchi","download_url":"https://codeload.github.com/marcosfshirafuchi/santander-dev-week-2024/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243966800,"owners_count":20376121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["h2-database","java","openapi","poo","spring","spring-boot","springboot","swagger","swagger-ui"],"created_at":"2024-11-23T05:14:44.681Z","updated_at":"2026-04-12T22:54:19.977Z","avatar_url":"https://github.com/marcosfshirafuchi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Santander Dev Week 2024\nJava RESTful API criada para a Santander Dev Week.\n\n## Diagrama de classe\n\n```mermaid\nclassDiagram\n  class User {\n    - String name\n    - Account account\n    - List\u003cFeature\u003e features\n    - Card card\n    - List\u003cNews\u003e news\n  }\n  class Account {\n    - String number\n    - String agency\n    - float balance\n    - float limit\n  }\n  class Feature {\n    - String icon\n    - String description\n  }\n  class Card {\n    - String number\n    - float limit\n  }\n  class News {\n    - String icon\n    - String description\n  }\n\n  User \"1\" *-- \"1\" Account\n  User \"1\" *-- \"N\" Feature \n  User \"1\" *-- \"1\" Card \n  User \"1\" *-- \"N\" News \n\n```\n## Principais Tecnologias\n\n- Java 21: Utilizaremos a versão LTS mais recente do Java para tirar vantagem das últimas inovações que essa linguagem robusta e amplamente utilizada oferece;\n- Spring Boot 3: Trabalharemos com a mais nova versão do Spring Boot, que maximiza a produtividade do desenvolvedor por meio de sua poderosa premissa de autoconfiguração;\n- Spring Data JPA: Exploraremos como essa ferramenta pode simplificar nossa camada de acesso aos dados, facilitando a integração com bancos de dados SQL;\n- OpenAPI (Swagger): Vamos criar uma documentação de API eficaz e fácil de entender usando a OpenAPI (Swagger), perfeitamente alinhada com a alta produtividade que o Spring Boot oferece;\n- H2 Database: Banco de dados SQL em memória.\n\n\n## Links para consultar localmente o projeto:\n\n- OpenAPI: http://localhost:8080/swagger-ui/index.html\n- H2 Database: http://localhost:8080/h2-console/\n\n## Json para o método Post no OpenAPI\n```\n{\n\t\"name\": \"Venilton\",\n\t\"account\":{\n\t\t\"number\": \"00000000-0\",\t\n\t\t\"agency\": \"0000\",\n\t\t\"balance\": 1324.64,\n\t\t\"limit\": 1000.00\n\t},\n\t\"features\":[\n\t {\n\t\t\"icon\": \"URL\",\n\t\t\"description\": \"Descrição da Feature\"\n\t }\n\t],\n\t\"card\":{\n\t \"number\": \"xxxx xxxx xxxx 0000\",\n\t \"limit\": 1000.00\n\t},\n\t\"news\":[\n\t {\n\t\t\"icon\": \"URL\",\t\t\t\t\n\t\t\"description\": \"Descrição da novidade\"\n\t }\n\t]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcosfshirafuchi%2Fsantander-dev-week-2024","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcosfshirafuchi%2Fsantander-dev-week-2024","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcosfshirafuchi%2Fsantander-dev-week-2024/lists"}