Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qutax/jpms-spring-example
An example for combining the JPMS and Spring
https://github.com/qutax/jpms-spring-example
java java-11 java-module jpms maven spring spring-boot
Last synced: 3 months ago
JSON representation
An example for combining the JPMS and Spring
- Host: GitHub
- URL: https://github.com/qutax/jpms-spring-example
- Owner: qutax
- License: mit
- Created: 2019-01-29T22:30:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-07T09:51:34.000Z (almost 6 years ago)
- Last Synced: 2024-09-30T13:03:24.940Z (4 months ago)
- Topics: java, java-11, java-module, jpms, maven, spring, spring-boot
- Language: Java
- Homepage:
- Size: 13.7 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```bash
mvn install
```
```bash
cd web
```
```bash
java --add-modules java.instrument --module-path=target/modules --module example.web/red.jackal.training.spring.jpms.web.WebApplication
```### Without JPMS
```bash
mvn install
```
```bash
cd web
```
```bash
mvn package spring-boot:repackage
```
```bash
java -jar target/web-0.0.1.jar
```