【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>
Jeecg-Boot2.1.2 版本,手工集成Online在线开发模块(Online表单、Online报表)
友情提醒: 如果你想去掉Online模块,也可以参考此文档
-
1、ant-design-jeecg-vue前端项目引入 online 依赖
Install安装
yarn add @jeecg/antd-online-re
修改ant-design-jeecg-vue/src/main.js 引入online
import "@jeecg/antd-online-re"
import '@jeecg/antd-online-re/dist/OnlineForm.css'
-
2、项目jeecg-boot-module-system 引入 online-form JAR包
修改jeecg-boot\jeecg-boot-module-system\pom.xml,增加依赖
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-re</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<exclusions>
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
</exclusions>
</dependency>
- 3、将 online-form 的路由vue页面复制到前端ant-design-jeecg-vue里 链接:https://pan.baidu.com/s/1BRzdR9Zbe3oy87SGvjih4A 提取码:f4jk
4.给admin角色授权 online-form 菜单
来源:oschina
链接:https://my.oschina.net/jeecg/blog/3142051