{"id":19656410,"url":"https://github.com/daggerok/resteasy-spring-boot-starter-example","last_synced_at":"2026-05-12T21:07:43.262Z","repository":{"id":151041966,"uuid":"259464697","full_name":"daggerok/resteasy-spring-boot-starter-example","owner":"daggerok","description":"Using RESTEasy Spring Boot starter integration. This is not just builtin Jersey integration!","archived":false,"fork":false,"pushed_at":"2020-04-27T22:30:36.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-27T02:20:34.548Z","etag":null,"topics":["github-action","github-action-docker","github-actions","github-actions-docker","resteasy","resteasy-spring-boot"],"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/daggerok.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":"2020-04-27T21:50:28.000Z","updated_at":"2020-04-27T22:30:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"15010b9f-0a2f-40b4-a5f3-5c2921650c27","html_url":"https://github.com/daggerok/resteasy-spring-boot-starter-example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/daggerok/resteasy-spring-boot-starter-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fresteasy-spring-boot-starter-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fresteasy-spring-boot-starter-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fresteasy-spring-boot-starter-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fresteasy-spring-boot-starter-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daggerok","download_url":"https://codeload.github.com/daggerok/resteasy-spring-boot-starter-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fresteasy-spring-boot-starter-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285519534,"owners_count":27185526,"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-11-20T02:00:05.334Z","response_time":54,"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":["github-action","github-action-docker","github-actions","github-actions-docker","resteasy","resteasy-spring-boot"],"created_at":"2024-11-11T15:27:44.037Z","updated_at":"2025-11-20T22:04:13.710Z","avatar_url":"https://github.com/daggerok.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# resteasy-spring-boot-starter example [![CI](https://github.com/daggerok/resteasy-spring-boot-starter-example/workflows/CI/badge.svg)](https://github.com/daggerok/resteasy-spring-boot-starter-example/actions?query=workflow%3ACI)\nUsing RESTEasy Spring Boot starter integration. This is not just builtin Jersey integration!\n\n_pom.xml_\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.jboss.resteasy\u003c/groupId\u003e\n    \u003cartifactId\u003eresteasy-spring-boot-starter\u003c/artifactId\u003e\n    \u003cversion\u003e4.5.1.Final\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n_app_\n\n```java\n@SpringBootApplication\npublic class RESTEasySpringBootApplication {\n\n  @Component\n  @ApplicationPath(\"/api\")\n  public static class RESTEasyConfig extends Application {\n\n    @Component\n    @Path(\"/hello\")\n    @Produces(MediaType.APPLICATION_JSON)\n    public static class RESTEasyResource {\n\n      @GET\n      public Map\u003cString, String\u003e hello() {\n        return Map.of(\"message\", \"Hello, World!\");\n      }\n    }\n  }\n\n  public static void main(String[] args) {\n    SpringApplication.run(RESTEasySpringBootApplication.class, args);\n  }\n}\n```\n\n_tests_\n\n```java\n@SpringBootTest\nclass RESTEasySpringBootApplicationTests {\n\n  @Autowired\n  WebTestClient webTestClient;\n\n  @Test\n  void contextLoads() {\n    webTestClient.get()\n                 .uri(\"/api/hello\")\n                 .exchange()\n                 .expectStatus().isOk()\n                 .expectBody(new ParameterizedTypeReference\u003cMap\u003cString, String\u003e\u003e() {})\n                 .consumeWith(mapEntityExchangeResult -\u003e {\n                   var map = mapEntityExchangeResult.getResponseBody();\n                   assertThat(map.get(\"message\")).isNotNull()\n                                                 .isEqualToIgnoringCase(\"hello, world!\");\n                 });\n\n  }\n}\n```\n\n_or simply_\n\n```bash\n./mvnw spring-boot:run\nhttp :8080/api/hello\n```\n\n## resources\n\n* https://www.youtube.com/watch?v=khzC-VwpFVM\n\u003c!--\n* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)\n* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.3.0.M4/maven-plugin/reference/html/)\n* [Create an OCI image](https://docs.spring.io/spring-boot/docs/2.3.0.M4/maven-plugin/reference/html/#build-image)\n* [Spring Configuration Processor](https://docs.spring.io/spring-boot/docs/2.2.6.RELEASE/reference/htmlsingle/#configuration-metadata-annotation-processor)\n--\u003e\n* https://github.com/resteasy/resteasy-spring-boot/blob/master/mds/USAGE.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Fresteasy-spring-boot-starter-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaggerok%2Fresteasy-spring-boot-starter-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Fresteasy-spring-boot-starter-example/lists"}