Ai
2 Star 0 Fork 0

mirrors_sourcegraph/training-java-monolith-refactor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
liberty-dev.sh 889 Bytes
一键复制 编辑 原始数据 按行查看 历史
Travis Lyons 提交于 2025-05-30 22:51 +08:00 . example: build a big legacy monolith
#!/bin/bash
# Liberty Development Server Startup Script
# This script starts the Liberty server in development mode
echo "Starting Big Bad Monolith on WebSphere Liberty..."
echo "======================================================="
# Build the application first
echo "Building application..."
./gradlew clean build
if [ $? -ne 0 ]; then
echo "Build failed. Please check the errors above."
exit 1
fi
# Start Liberty in development mode
echo "Starting Liberty server in development mode..."
echo "🌐 Web Interface: http://localhost:9080/big-bad-monolith"
echo "🐛 Debug Port: Automatically configured by libertyDev"
echo ""
echo "Development mode features:"
echo " ✅ Automatic reload on code changes"
echo " ✅ Automatic test execution"
echo " ✅ Debug support"
echo ""
echo "Press Ctrl+C to stop the server"
echo ""
./gradlew libertyDev
echo "Server stopped."
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_sourcegraph/training-java-monolith-refactor.git
git@gitee.com:mirrors_sourcegraph/training-java-monolith-refactor.git
mirrors_sourcegraph
training-java-monolith-refactor
training-java-monolith-refactor
main

搜索帮助