{"id":15765361,"url":"https://github.com/rafaelcpalmeida/dockerize-java-rmi","last_synced_at":"2026-05-19T07:04:48.966Z","repository":{"id":84298428,"uuid":"242205259","full_name":"rafaelcpalmeida/dockerize-java-rmi","owner":"rafaelcpalmeida","description":"Because reasons ¯\\_(ツ)_/¯ ","archived":false,"fork":false,"pushed_at":"2020-05-11T22:57:08.000Z","size":677,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-13T09:46:12.566Z","etag":null,"topics":["docker","java","rmi"],"latest_commit_sha":null,"homepage":null,"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/rafaelcpalmeida.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":"security-policies/client.policy","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-21T18:30:02.000Z","updated_at":"2020-06-18T16:30:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"a445bf45-caf5-4236-bc4d-c856506af479","html_url":"https://github.com/rafaelcpalmeida/dockerize-java-rmi","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/rafaelcpalmeida/dockerize-java-rmi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelcpalmeida%2Fdockerize-java-rmi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelcpalmeida%2Fdockerize-java-rmi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelcpalmeida%2Fdockerize-java-rmi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelcpalmeida%2Fdockerize-java-rmi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rafaelcpalmeida","download_url":"https://codeload.github.com/rafaelcpalmeida/dockerize-java-rmi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelcpalmeida%2Fdockerize-java-rmi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33205505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"online","status_checked_at":"2026-05-19T02:00:06.763Z","response_time":58,"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":["docker","java","rmi"],"created_at":"2024-10-04T12:41:19.791Z","updated_at":"2026-05-19T07:04:48.949Z","avatar_url":"https://github.com/rafaelcpalmeida.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Java RMI Applications Dockerized\nThis repo is a simple boilerplate for dockerized Java RMI and, as well as Pub/Sub applications using RabbitMQ as a message broker. It's meant to work without modifications and/or customizations.\n\n## Instructions\nGiven the following folder structure:\n```\n├── LICENSE\n├── Makefile\n├── README.md\n├── bin\n│   ├── amqp-client-5.9.0.jar\n│   ├── slf4j-api-1.7.9.jar\n│   └── slf4j-simple-1.7.9.jar\n├── client\n│   ├── Dockerfile\n│   ├── run-client.sh\n│   └── security-policies\n├── security-policies\n│   ├── client.policy\n│   ├── clientAllPermition.policy\n│   ├── group.policy\n│   ├── rmid.policy\n│   ├── serverAllPermition.policy\n│   └── setup.policy\n├── server\n│   ├── Dockerfile\n│   ├── run-server.sh\n│   └── security-policies\n└── src\n    └── edu\n        └── ufp\n            └── inf\n                └── sd\n                    ├── rabbitmq\n                    │   └── hello\n                    │       ├── consumer\n                    │       │   └── Consumer.java\n                    │       └── producer\n                    │           └── Producer.java\n                    └── rmi\n                        ├── test\n                        │   ├── client\n                        │   │   └── TestClient.java\n                        │   └── server\n                        │       ├── TestImpl.java\n                        │       ├── TestRI.java\n                        │       └── TestServer.java\n                        └── util\n                            ├── rmisetup\n                            │   └── SetupContextRMI.java\n                            └── threading\n                                └── ThreadPool.java\n```\nAll of your Java packages should be inside `src`, just like the example above has `edu.ufp.inf.sd.rmi.test`, `edu.ufp.inf.sd.rmi.util` and `edu.ufp.inf.sd.rabbitmq.hello`.\n\n## Usage\n\nApps can be started using `make` command. For instance, `make run-server PACKAGE_NAME=com.your.package.YourApp SERVICE_NAME=YourService`\n\nBefore running any command you should run `make setup-environment` and `make build-all` to get everything prepared.\n\nBellow you can find information on how to run the given example apps.\n\n### Test app example\nTo start `Test` application **server** you can execute:\n`make run-server PACKAGE_NAME=edu.ufp.inf.sd.rmi.test.server.TestServer SERVICE_NAME=TestService`\n\nTo start `Test` application **client** you can execute:\n`make run-client PACKAGE_NAME=edu.ufp.inf.sd.rmi.test.client.TestClient SERVICE_NAME=TestService`\n\n### Hello RabbitMQ example\n#### Since `RabbitMQ`-dependant applications require an instance of a `RabbitMQ` server, first, you need to run `make run-rabbitmq-server`\n\nTo start `Hello - RabbitMQ` application **consumer** you can execute:\n`make run-client PACKAGE_NAME=edu.ufp.inf.sd.rabbitmq.hello.consumer.Consumer SERVICE_NAME=rabbit`\n\nTo start `Hello - RabbitMQ` application **producer** you can execute:\n`make run-client PACKAGE_NAME=edu.ufp.inf.sd.rabbitmq.hello.producer.Producer SERVICE_NAME=rabbit`\n\n## Contributing\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)\n\n\n**Made with :heart: in Portugal**\n\n**Software livre c\\*ralho! :v:**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafaelcpalmeida%2Fdockerize-java-rmi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frafaelcpalmeida%2Fdockerize-java-rmi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafaelcpalmeida%2Fdockerize-java-rmi/lists"}