{"id":49720228,"url":"https://github.com/krisnaajiep/java-personal-blog","last_synced_at":"2026-05-09T00:14:37.321Z","repository":{"id":290503851,"uuid":"973461005","full_name":"krisnaajiep/java-personal-blog","owner":"krisnaajiep","description":"A simple personal blog web app built with HTML, CSS, and Java to write and publish articles on various topics.. ","archived":false,"fork":false,"pushed_at":"2025-04-29T06:05:57.000Z","size":582,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T17:52:04.035Z","etag":null,"topics":["basic-authentication","css","filesystem","gson","html","java","json","personal-blog","servlet","servlets-jsp-html-css","webapp"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/krisnaajiep.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-04-27T03:21:24.000Z","updated_at":"2025-04-29T06:11:53.000Z","dependencies_parsed_at":"2025-04-30T17:46:36.781Z","dependency_job_id":null,"html_url":"https://github.com/krisnaajiep/java-personal-blog","commit_stats":null,"previous_names":["krisnaajiep/java-personal-blog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/krisnaajiep/java-personal-blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krisnaajiep%2Fjava-personal-blog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krisnaajiep%2Fjava-personal-blog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krisnaajiep%2Fjava-personal-blog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krisnaajiep%2Fjava-personal-blog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/krisnaajiep","download_url":"https://codeload.github.com/krisnaajiep/java-personal-blog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krisnaajiep%2Fjava-personal-blog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32802651,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["basic-authentication","css","filesystem","gson","html","java","json","personal-blog","servlet","servlets-jsp-html-css","webapp"],"created_at":"2026-05-09T00:14:33.947Z","updated_at":"2026-05-09T00:14:37.316Z","avatar_url":"https://github.com/krisnaajiep.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Java Personal Blog\n\n\u003e Simple personal blog web app built with HTML, CSS, and Java.\n\n## Table of Contents\n\n- [General Info](#general-information)\n- [Technologies Used](#technologies-used)\n- [Features](#features)\n- [Setup](#setup)\n- [Usage](#usage)\n- [Project Status](#project-status)\n- [Acknowledgements](#acknowledgements)\n- [License](#license)\n\n## General Information\n\nJava Personal Blog is a simple web application used to write and publish articles. This project is designed to explore and practice basic authentication, working with filesystem, HTML, CSS, and server in Java.\n\n## Technologies Used\n\n- HTML\n- CSS\n- Java 21.0.6 LTS\n- Maven 3.9.9\n- Jakarta Servlet 6.1.0\n- Gson 2.12.1\n\n## Features\n\n- **View all articles**: Display a list of all existing articles with their title and publishing date.\n- **Admin login**: A basic authentication for the admin section to be able to manage articles.\n- **Add a new article**: Create a new article with a title, publishing date, and content.\n- **View an article**: Display an article with their title, publishing date, and content.\n- **Update an article**: Modify an existing article.\n- **Delete an article**: Remove an existing article.\n\n## Setup\n\nTo run this web app, you’ll need:\n\n* **Java**: Version 21 or higher\n* **Maven**: Version 3.x\n* **Apache Tomcat**: Version 11.0.0-M20\n\nHow to install:\n\n1. Clone the repository\n\n   ```bash\n   git clone https://github.com/krisnaajiep/java-personal-blog.git\n   ```\n\n2. Change the current working directory\n\n   ```bash\n   cd java-personal-blog\n   ```\n\n3. Build the project\n\n   ```bash\n   mvn clean package\n   ```\n\n4. Copy the WAR file from the target/ directory to the webapps folder in your Apache Tomcat directory\n\n   ```bash\n   cp target/java-personal-blog-1.0-SNAPSHOT.war path/to/tomcat/webapps/personal-blog.war \n   ```\n\n5. Run the Apache Tomcat and access the URL\n\n   ```bash\n   http://localhost:8080/personal-blog\n   ```\n\n## Usage\n\n1. Select `Admin` to enter dashboard.\n\n   ![enter-dashboard](docs/image1.png)\n\n2. Use the following credentials for authentication.\n\n   ```text\n   Username: admin\n   Password: password\n   ```\n\n3. Select `+Add` to add new article.\n\n   ![select-add](docs/image2.png)\n\n4. Fill all input in the add article form and select `Publish` button.\n\n   ![add-new-article](docs/image3.png)\n\n5. Select an article title in the dashboard to view the content.\n\n   ![view-article](docs/image4.png)\n\n6. Select `Go back` for return to the previous page.\n\n   ![go-back-in-article-page](docs/image5.png)\n\n7. Select `Edit` to update an article.\n\n   ![select-edit](docs/image6.png)\n\n8. Fill all inputs in the edit article form and select `Update` button.\n\n   ![edit-an-article](docs/image7.png)\n\n9. Select `Delete` to delete an article.\n\n   ![delete-article](docs/image8.png)\n\n## Project Status\n\nProject is: _complete_.\n\n## Acknowledgements\n\nThis project was inspired by [roadmap.sh](https://roadmap.sh/projects/personal-blog).\n\n## License\n\nThis project is licensed under the MIT License—see the [LICENSE](./LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrisnaajiep%2Fjava-personal-blog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrisnaajiep%2Fjava-personal-blog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrisnaajiep%2Fjava-personal-blog/lists"}