Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 773 Bytes

File metadata and controls

39 lines (28 loc) · 773 Bytes

struts-examples Build Status

gradle
./gradlew ; ./gradlew :webapp:appRun &

http :8080/webapp/
http :8080/webapp/hello
http :8080/webapp/customers/list

./gradlew :webapp:appStop
maven
./mvnw ; ./mvnw -f webapp jetty:run &

http :8080/webapp/
http :8080/webapp/hello
http :8080/webapp/customers/list

./mvnw -f webapp jetty:stop
build and run
./mvnw ; ./gradlew
docker-compose down -v; ./gradlew; docker-compose up --build --force-recreate --remove-orphans

http :8080/webapp/
http :8080/webapp/hello
http :8080/webapp/customers/list

docker-compose down -v --rmi local