新增模块
# 新建模块
这里演示使用 Idea 创建一个新的子模块
选择 File -> New -> Module
选择 Maven -> Next
选择父模块 -> Finish
回到项目,在新模块中创建包
提示
如果包名和 System 模块 me.zhengjie 不一样,那么需要在 AppRun.class 中配置扫描路径,两个地方都需增加@ComponentScan及@EnableJpaRepositories。
详见:新建模块后访问接口 404 (opens new window)
给新模块起一个名字
最后在 System 模块的 pom.xml 的 dependencies 节点加入创建的子模块
注意:此处还需要添加tool模块的依赖,才能在启动时扫描到该模块swagger才能加载此模块的接口
<!-- tools 模块包含了 common 和 logging 模块-->
<dependency>
<groupId>me.zhengjie</groupId>
<artifactId>eladmin-tools</artifactId>
<version>2.7</version>
</dependency>
1
2
3
4
5
6
2
3
4
5
6
帮助我们改善此页面! (opens new window)
上次更新: 2024/09/11, 06:38:28