Ai
2 Star 0 Fork 0

mirrors_sourcegraph/training-java-monolith-refactor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
liberty-dev.bat 782 Bytes
一键复制 编辑 原始数据 按行查看 历史
Travis Lyons 提交于 2025-05-30 22:51 +08:00 . example: build a big legacy monolith
@echo off
REM Liberty Development Server Startup Script for Windows
REM This script starts the Liberty server in development mode
echo Starting Big Bad Monolith on WebSphere Liberty...
echo =======================================================
REM Build the application first
echo Building application...
call gradlew.bat clean build
if %ERRORLEVEL% neq 0 (
echo Build failed. Please check the errors above.
exit /b 1
)
REM Start Liberty in development mode
echo Starting Liberty server in development mode...
echo Server will be available at: http://localhost:9080/big-bad-monolith
echo API endpoints will be available at: http://localhost:9080/big-bad-monolith/api/
echo.
echo Press Ctrl+C to stop the server
echo.
call gradlew.bat 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

搜索帮助