wuyb518 / jpms-spring-example

An example for combining the JPMS and Spring

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

An example for combining the JPMS and Spring

License:MIT License


Languages

Language:Java 100.0%