赞
踩
开发工具使用 idea。
Module创建完成后,进入 Module 的 pom.xml 文件,添加两项内容。
在 artifactId下增加 name,指定模块名称
<artifactId>eladmin-mp</artifactId> 这个原来就有
<name>微信公众号模块</name> 这个是新增的
添加依赖项,把 eladmin-tools 引入进来。
<dependencies>
<dependency>
<groupId>me.zhengjie</groupId>
<artifactId>eladmin-tools</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
打开 eladmin-system 下的 pom.xml,加入刚刚创建的 module
<!-- 微信公众号管理模块 -->
<dependency>
<groupId>me.zhengjie</groupId>
<artifactId>eladmin-mp</artifactId>
<version>1.1</version>
</dependency>
至此,Module 新建完成,下一篇使用该 Module 进行单表的增删改查操作。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。