Generally the preferred way to get started is with a starter template
"helloworld" starter app instructions:
curl https://codeload.github.com/apache/isis-app-helloworld/zip/2.0.0-M3 | jar xv
cd isis-app-helloworld-2.0.0-M3
mvn clean install
mvn spring-boot:run
"simpleapp" more structured start app instructions:
curl https://codeload.github.com/apache/isis-app-simpleapp/zip/2.0.0-M3 | jar xv
cd isis-app-simpleapp-2.0.0-M3
mvn clean install
mvn -pl webapp spring-boot:run
An example/demo app is available via Docker:
docker pull apacheisis/demo-springboot:latest
docker run \
--name demo \
--detach \
-p8080:8080 \
apacheisis/demo-springboot:latest
... and then accessible at http://localhost:8080/wicket/ ; login with "sven"/"pass".
See also: Restful Objects
Setup Guide User Guide | Reference Guide | Testing
Last modified 07 October 2024