Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 523 Bytes

README.md

File metadata and controls

29 lines (26 loc) · 523 Bytes

JPMS and Spring Example

This project is a combatibility test of the Java Platform Module System and the Spring Framework using Spring Boot.

Building and Running

With JPMS

mvn install
cd web
java --add-modules java.instrument --module-path=target/modules --module example.web/red.jackal.training.spring.jpms.web.WebApplication

Without JPMS

mvn install
cd web
mvn package spring-boot:repackage
java -jar target/web-0.0.1.jar