本文前端使用的是vue3版本
1.前后端代码运行
首先,去到官网将源码下载下来(官网地址:https://jeecg.com/?ref=nav.poetries.top)
后端需要改的地方:
运行后端:执行jeecg-system-start下的JeecgSystemApplication
前端需要改的地方:
前端运行:
pnpm install
pnpm run dev
2.后端新增module
1.首先,右键项目,新建module,新建maven项目到目录下,module可以随便命名
2.接着,修改新建的module的pom.xml文件,如图:
<dependencies>
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-base-core</artifactId>
</dependency>
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-system-biz</artifactId>
</dependency>
</dependencies>