├── README.md ├── quarkus-boot.png ├── quarkus-build.png ├── quarkus-code.png ├── quarkus-hello.png ├── quarkus-performance ├── .dockerignore ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-distroless │ ├── java │ │ └── com │ │ │ └── selimhorri │ │ │ └── pack │ │ │ └── GreetingResource.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── selimhorri │ └── pack │ ├── GreetingResourceTest.java │ └── NativeGreetingResourceIT.java ├── spring-boot.png ├── spring-build.png ├── spring-code.png ├── spring-hello.png └── spring-performance ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── selimhorri │ │ └── pack │ │ └── SpringPerformanceApplication.java └── resources │ └── application.properties └── test └── java └── com └── selimhorri └── pack └── SpringPerformanceApplicationTests.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/README.md -------------------------------------------------------------------------------- /quarkus-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-boot.png -------------------------------------------------------------------------------- /quarkus-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-build.png -------------------------------------------------------------------------------- /quarkus-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-code.png -------------------------------------------------------------------------------- /quarkus-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-hello.png -------------------------------------------------------------------------------- /quarkus-performance/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/.dockerignore -------------------------------------------------------------------------------- /quarkus-performance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/.gitignore -------------------------------------------------------------------------------- /quarkus-performance/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /quarkus-performance/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /quarkus-performance/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /quarkus-performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/README.md -------------------------------------------------------------------------------- /quarkus-performance/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/mvnw -------------------------------------------------------------------------------- /quarkus-performance/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/mvnw.cmd -------------------------------------------------------------------------------- /quarkus-performance/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/pom.xml -------------------------------------------------------------------------------- /quarkus-performance/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-performance/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /quarkus-performance/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-performance/src/main/docker/Dockerfile.native-distroless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/src/main/docker/Dockerfile.native-distroless -------------------------------------------------------------------------------- /quarkus-performance/src/main/java/com/selimhorri/pack/GreetingResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/src/main/java/com/selimhorri/pack/GreetingResource.java -------------------------------------------------------------------------------- /quarkus-performance/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quarkus-performance/src/test/java/com/selimhorri/pack/GreetingResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/src/test/java/com/selimhorri/pack/GreetingResourceTest.java -------------------------------------------------------------------------------- /quarkus-performance/src/test/java/com/selimhorri/pack/NativeGreetingResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/quarkus-performance/src/test/java/com/selimhorri/pack/NativeGreetingResourceIT.java -------------------------------------------------------------------------------- /spring-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-boot.png -------------------------------------------------------------------------------- /spring-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-build.png -------------------------------------------------------------------------------- /spring-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-code.png -------------------------------------------------------------------------------- /spring-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-hello.png -------------------------------------------------------------------------------- /spring-performance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/.gitignore -------------------------------------------------------------------------------- /spring-performance/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-performance/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-performance/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-performance/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/mvnw -------------------------------------------------------------------------------- /spring-performance/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/mvnw.cmd -------------------------------------------------------------------------------- /spring-performance/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/pom.xml -------------------------------------------------------------------------------- /spring-performance/src/main/java/com/selimhorri/pack/SpringPerformanceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/src/main/java/com/selimhorri/pack/SpringPerformanceApplication.java -------------------------------------------------------------------------------- /spring-performance/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spring-performance/src/test/java/com/selimhorri/pack/SpringPerformanceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/quarkus-vs-spring-boot-performances/HEAD/spring-performance/src/test/java/com/selimhorri/pack/SpringPerformanceApplicationTests.java --------------------------------------------------------------------------------