{"id":22801161,"url":"https://github.com/gitbrave99/crud-api-springboot","last_synced_at":"2025-09-19T07:34:01.179Z","repository":{"id":121447537,"uuid":"543393013","full_name":"gitbrave99/crud-api-springboot","owner":"gitbrave99","description":null,"archived":false,"fork":false,"pushed_at":"2022-09-30T03:32:31.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-30T19:41:26.516Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/gitbrave99.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":"2022-09-30T02:01:01.000Z","updated_at":"2022-09-30T02:58:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"d4c00898-8f99-4d26-8f06-19667b014ba6","html_url":"https://github.com/gitbrave99/crud-api-springboot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gitbrave99/crud-api-springboot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitbrave99%2Fcrud-api-springboot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitbrave99%2Fcrud-api-springboot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitbrave99%2Fcrud-api-springboot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitbrave99%2Fcrud-api-springboot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gitbrave99","download_url":"https://codeload.github.com/gitbrave99/crud-api-springboot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitbrave99%2Fcrud-api-springboot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275897613,"owners_count":25548468,"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","status":"online","status_checked_at":"2025-09-19T02:00:09.700Z","response_time":108,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-12-12T08:09:13.160Z","updated_at":"2025-09-19T07:34:01.132Z","avatar_url":"https://github.com/gitbrave99.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CRUD API SpringBoot\nThis project is developed in java 8  \n__Have this packages:__\n* Mysql Driver\n* Spring Web\n* Spring Data JPA\n* Spring Boot DevTools\n* Lombok        \n------------------------------------------------------------  \n## Database Configuration\n__application.properties__\n```\nspring.datasource.url = jdbc:mysql://localhost:3306/crudapi\nspring.datasource.username = username\nspring.datasource.password = password\nspring.jpa.hibernate.ddl-auto = none\nspring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect\nspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver\n```\n__Database__\n```\nCREATE DATABASE crudapi;\n```\n__Tables__\n```\nCREATE TABLE category (\n\tid_category INTEGER auto_increment NOT NULL,\n\tcategory_name varchar(100) NULL,\n\tPRIMARY KEY(id_category)\n);\nCREATE TABLE product(\n\tid_product INTEGER AUTO_INCREMENT NOT NULL,\n\tid_category INTEGER NOT NULL,\n\tproduct_name VARCHAR(100) NOT NULL,\n\tbrand VARCHAR(100) NOT NULL,\n\tunit_price DECIMAL(15,2) NOT NULL,\n\tstock INTEGER NOT NULL,\n\tPRIMARY KEY(id_product),\n\tFOREIGN KEY(id_category) REFERENCES category(id_category)\n); \n```\n------------------------------------------------------------  \n__List of endpoints__\n```\nGET    /products/\nGET    /products/{product}\nPOST   /products/add\nPUT    /products/edit/{product}\nDELETE /products/delete/{product}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitbrave99%2Fcrud-api-springboot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgitbrave99%2Fcrud-api-springboot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitbrave99%2Fcrud-api-springboot/lists"}