加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
quick-start.sh 806 Bytes
一键复制 编辑 原始数据 按行查看 历史
romantictravel 提交于 2015-07-28 21:47 . init
#!/bin/bash
echo "[Pre-Requirement] Makesure install JDK 6.0+ and set the JAVA_HOME."
echo "[Pre-Requirement] Makesure install Maven 3.0.3+ and set the PATH."
set MAVEN_OPTS=$MAVEN_OPTS -XX:MaxPermSize=128m
echo "[Step 1] Install all springx modules and archetype to local maven repository."
cd modules
mvn clean install
cd ../support/maven-archetype
mvn clean install
cd ../../
echo "[Step 2] Initialize schema and data for all example projects."
cd examples
mvn antrun:run -Prefresh-db
cd ..
echo "[Step 3] Start all example projects."
cd examples/quickstart
mvn clean jetty:run &
cd ../showcase
mvn clean jetty:run -Djetty.port=8081 &
echo "[INFO] Please wait a moment then access below demo sites:"
echo "[INFO] http://localhost:8080/quickstart"
echo "[INFO] http://localhost:8081/showcase"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化