Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sha1n/spring-boot-jetty-jersey
A POC with Spring boot, embedded Jetty, web-content and Jersey REST services
https://github.com/sha1n/spring-boot-jetty-jersey
asyncio example-project java jersey jetty rest spring-boot
Last synced: 2 days ago
JSON representation
A POC with Spring boot, embedded Jetty, web-content and Jersey REST services
- Host: GitHub
- URL: https://github.com/sha1n/spring-boot-jetty-jersey
- Owner: sha1n
- Created: 2014-04-13T07:32:04.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2022-12-29T22:43:18.000Z (about 2 years ago)
- Last Synced: 2023-04-08T06:56:00.879Z (almost 2 years ago)
- Topics: asyncio, example-project, java, jersey, jetty, rest, spring-boot
- Language: Java
- Homepage:
- Size: 44.9 KB
- Stars: 7
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Java CI with Maven](https://github.com/sha1n/spring-boot-jetty-jersey/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/sha1n/spring-boot-jetty-jersey/actions/workflows/maven.yml)
spring-boot-jetty-jersey
========================
This repository contains a simple example of how to build a Spring-Boot based executable web application using an embedded Jetty and Jersey 2 JAX-RS implementation.# How to run this example:
```
# clone
git clone https://github.com/sha1n/spring-boot-jetty-jersey.git# build
cd spring-boot-jetty-jersey
mvn install# run
$JAVA_HOME/bin/java -jar ./app/target/app-1.0-SNAPSHOT.jar# test
curl -v http://localhost:8080/api/test/sync
```