# 自动生成代码 **Repository Path**: wywteach/init-parent-generator ## Basic Information - **Project Name**: 自动生成代码 - **Description**: mybatis plus + sprongboot + vue 后端自动代码生成 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2020-11-30 - **Last Updated**: 2021-11-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mybatis plus + sprongboot + vue 后端自动代码生成 ## java 部署 > start.sh ```batch nohup java -jar init-friend-circle.jar >/dev/null 2>&1 & ``` > stop.sh ```batch PID=$(ps -ef | grep init-friend-circle.jar | grep -v grep | awk '{ print $2 }') if [ -z "$PID" ] then echo Application is already stopped else echo kill -9 $PID kill -9 $PID fi ``` > log.sh ```batch tail -f log/log_info.log ``` ```text # .sh 运行方式 # 确保用户对文件有读写及执行权限 chmod a+x start.sh # 启动java ./start.sh # 停止java服务 ./stop.sh # 查看日志 ./log.sh ``` ## 三步解决IDEA actiBPM插件之.bpmn文件中文乱码 >https://blog.csdn.net/weixin_46544994/article/details/106392705