原文地址:http://jeecg.iteye.com/blog/2320670
JEECG在线聊天插件功能集成文档
前提: 采用jeecg_3.6.3版本以上(Maven工程)
插件项目: 在线聊天工具
截图: 集成步骤:
1、pom.xml 引入{聊天插件}依赖
<!-- 在线聊天工具 -->
<dependency>
<groupId>org.p3framework</groupId>
<artifactId>jeecg-p3-biz-chat</artifactId>
<version>1.0.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
2、增加聊天websocket配置文件:config.js
路径位置:src/main/webapp/plug-in/layim/config.js
修改websocket ip配置:
var chatIp = "192.168.0.113";
3、增加文件:layui.jsp
路径:src/main/webapp/context/layui.jsp
4、首页引入通用layui.jsp
修改文件:src/main/webapp/webpage/main/hplus_main.jsp
代码修改位置:652行,新增如下代码:
<%@include file="/context/layui.jsp"%>
5、项目启动,需要采用tomcat7(tomcat6不支持websocket)
命令:tomcat7:run
关于配置附件下载地址:http://jeecg.iteye.com/blog/2320670