{"id":18607753,"url":"https://github.com/julius278/demospring","last_synced_at":"2026-04-18T02:32:21.059Z","repository":{"id":154673654,"uuid":"511659662","full_name":"Julius278/DEMOSPRING","owner":"Julius278","description":"Von AWS CodeStar erstelltes Repository.","archived":false,"fork":false,"pushed_at":"2022-07-08T10:13:02.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-16T21:13:20.202Z","etag":null,"topics":["aws","aws-codestar","cicd","java","spring"],"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/Julius278.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-07-07T20:03:54.000Z","updated_at":"2022-08-17T13:16:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"d35745b6-dc56-4bf8-9010-b3405dd3d51e","html_url":"https://github.com/Julius278/DEMOSPRING","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Julius278/DEMOSPRING","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FDEMOSPRING","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FDEMOSPRING/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FDEMOSPRING/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FDEMOSPRING/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Julius278","download_url":"https://codeload.github.com/Julius278/DEMOSPRING/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FDEMOSPRING/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31953778,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["aws","aws-codestar","cicd","java","spring"],"created_at":"2024-11-07T02:31:08.742Z","updated_at":"2026-04-18T02:32:21.039Z","avatar_url":"https://github.com/Julius278.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Welcome to the AWS CodeStar sample web service\n==================================================\n\nThis sample code helps get you started with a simple Java web service\ndeployed by AWS CodeDeploy and AWS CloudFormation to an Amazon EC2 server.\n\nWhat's Here\n-----------\n\nThis sample includes:\n\n* README.md - this file\n* appspec.yml - this file is used by AWS CodeDeploy when deploying the web\n  service to EC2\n* buildspec.yml - this file is used by AWS CodeBuild to build the web\n  service\n* pom.xml - this file is the Maven Project Object Model for the web service\n* src/main - this directory contains your Java service source files\n* src/test - this directory contains your Java service unit test files\n* scripts/ - this directory contains scripts used by AWS CodeDeploy when\n  installing and deploying your service on the Amazon EC2 instance\n* template.yml - this file contains the description of AWS resources used by AWS\n  CloudFormation to deploy your infrastructure\n* template-configuration.json - this file contains the project ARN with placeholders used for tagging resources with the project ID\n\nGetting Started\n---------------\n\nThese directions assume you want to develop on your local computer, and not\nfrom the Amazon EC2 instance itself. If you're on the Amazon EC2 instance, the\nvirtual environment is already set up for you, and you can start working on the\ncode.\n\nTo work on the sample code, you'll need to clone your project's repository to your\nlocal computer. If you haven't, do that first. You can find instructions in the AWS CodeStar user guide at https://docs.aws.amazon.com/codestar/latest/userguide/getting-started.html#clone-repo.\n\n1. Install maven.  See https://maven.apache.org/install.html for details.\n\n2. Install tomcat.  See https://tomcat.apache.org/tomcat-8.0-doc/setup.html for\n   details.\n\n3. Build the service.\n\n        $ mvn -f pom.xml compile\n        $ mvn -f pom.xml package\n\n4. Copy the built service to the Tomcat webapp directory.  The actual\n   location of that directory will vary depending on your platform and\n   installation.\n\n        $ cp target/ROOT.war \u003ctomcat webapp directory\u003e\n\n4. Restart your tomcat server\n\n5. Open http://127.0.0.1:8080/ in a web browser to view your service.\n\nWhat Do I Do Next?\n------------------\n\nOnce you have a virtual environment running, you can start making changes to\nthe sample Java web service. We suggest making a small change to\n/src/main/java/com/aws/codestar/projecttemplates/controller/HelloWorldController.java\nfirst, so you can see how changes pushed to your project's repository are automatically\npicked up by your project pipeline and deployed to the Amazon EC2 instance. (You can watch\nthe pipeline progress on your project dashboard.) Once you've seen how that works, start\ndeveloping your own code, and have fun!\n\nTo run your tests locally, go to the root directory of the sample code and run the\n`mvn clean compile test` command, which AWS CodeBuild also runs through your `buildspec.yml` file.\n\nTo test your new code during the release process, modify the existing tests or add tests\nto the tests directory. AWS CodeBuild will run the tests during the build stage of your\nproject pipeline. You can find the test results in the AWS CodeBuild console.\n\nLearn more about Maven's [Standard Directory Layout](https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html).\n\nLearn more about AWS CodeBuild and how it builds and tests your application here:\nhttps://docs.aws.amazon.com/codebuild/latest/userguide/concepts.html\n\nLearn more about AWS CodeStar by reading the user guide. Ask questions or make\nsuggestions on our forum.\n\nUser Guide: https://docs.aws.amazon.com/codestar/latest/userguide/welcome.html\n\nForum: https://forums.aws.amazon.com/forum.jspa?forumID=248\n\nHow Do I Add Template Resources to My Project?\n------------------\n\nTo add AWS resources to your project, you'll need to edit the `template.yml`\nfile in your project's repository. You may also need to modify permissions for\nyour project's worker roles. After you push the template change, AWS CodeStar\nand AWS CloudFormation provision the resources for you.\n\nSee the AWS CodeStar user guide for instructions to modify your template:\nhttps://docs.aws.amazon.com/codestar/latest/userguide/how-to-change-project.html#customize-project-template\n\nWhat Should I Do Before Running My Project in Production?\n------------------\n\nAWS recommends you review the security best practices recommended by the framework\nauthor of your selected sample application before running it in production. You\nshould also regularly review and apply any available patches or associated security\nadvisories for dependencies used within your application.\n\nBest Practices: https://docs.aws.amazon.com/codestar/latest/userguide/best-practices.html?icmpid=docs_acs_rm_sec\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulius278%2Fdemospring","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjulius278%2Fdemospring","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulius278%2Fdemospring/lists"}