diff options
Diffstat (limited to 'spring-framework/00-config-webapps')
| -rw-r--r-- | spring-framework/00-config-webapps/.gitignore | 6 | ||||
| -rw-r--r-- | spring-framework/00-config-webapps/README | 9 |
2 files changed, 15 insertions, 0 deletions
diff --git a/spring-framework/00-config-webapps/.gitignore b/spring-framework/00-config-webapps/.gitignore new file mode 100644 index 0000000..e285fe2 --- /dev/null +++ b/spring-framework/00-config-webapps/.gitignore @@ -0,0 +1,6 @@ +/.classpath +/.project +/.settings/ +/.metadata/ +/target/ +/pom.xml diff --git a/spring-framework/00-config-webapps/README b/spring-framework/00-config-webapps/README new file mode 100644 index 0000000..6786e0f --- /dev/null +++ b/spring-framework/00-config-webapps/README @@ -0,0 +1,9 @@ +Run this command to clean and package the application, start Tomcat and deploy the application: + + mvn clean package cargo:run + +Application will be accessible via http://localhost:8080/<maven project artifact id>/ + +To redeploy the application, run the below Maven command from a different terminal while being inside the Maven project directory: + + mvn package cargo:redeploy |
