1、生成代码包,解压后放入程序中
2、新建业务模块目录,例如:ruoyi-test
3、在ruoyi-test业务模块下新建pom.xml,如果有的话就不用管创建了
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>ruoyi</artifactId>
<groupId>com.ruoyi</groupId>
<version>x.x.x</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ruoyi-test</artifactId>
<description>
test系统模块
</description>
<dependencies>
<!-- 通用工具-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-common</artifactId>
</dependency>
</dependencies>
</project>
4、在ruoyi-test业务模块下新建src\main\java,src\main\resources目录,如果有的话就不用创建了,将生成的代码放入其中
5、将生成的前端代码放到分别放到ruoyi-ui中的src下的api和views下
6、根目录pom.xml依赖声明节点dependencies中添加依赖
<!-- 测试模块-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-test</artifactId>
<version>${ruoyi.version}</version>
</dependency>
7、根目录pom.xml模块节点modules添加业务模块
<module>ruoyi-test</module>
8、ruoyi-admin目录pom.xml添加模块依赖
<!-- 测试模块-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-test</artifactId>
</dependency>
完成上述步骤后,如果前端js中与controller对应好,就可以启动成功了。
如果有其他的问题,欢迎留言,我们一起学习!!!