【免费开源】积木JimuBI大屏集成eladmin

B站影视 2025-01-13 11:47 3

摘要:JimuBI 是一个JAVA语言的低代码数据可视化大屏BI产品,将大屏、仪表盘、移动面板、图表或页面元素封装为基础组件,无需编写代码即可完成业务需求。 这是JeecgBoot团队出品的另外一款报表产品,积木报表已经成为业内报表首先,预测该大屏即将覆盖全行业。

JimuBI 是一个JAVA语言的低代码数据可视化大屏BI产品,将大屏、仪表盘、移动面板、图表或页面元素封装为基础组件,无需编写代码即可完成业务需求。 这是JeecgBoot团队出品的另外一款报表产品,积木报表已经成为业内报表首先,预测该大屏即将覆盖全行业。

酷炫大屏 轻松设计,通过拖拽完成大屏设计,80多种组件及20多种边框装饰满足您的设计需求。智能仪表盘 简单易用,拖拽式操作自由布局,页面自适应;支持门户交互设计,移动端设计。大屏采用类word风格,可以随意拖动组件

eladmin是一款基于Spring Boot、Mybatis-Plus、Spring Security、Redis和Vue等技术栈构建的开源后台管理系统。

本示例来介绍一下JimuBI 大屏集成eladmin。

目前积木BI大屏只支持springboot2版本

注意:使用积木BI大屏需要引入积木报表,集成积木报表

从1.9.1起正式将 jimureport-dashboard-spring-boot-starter 更名为 jimubi-spring-boot-starter,请大家注意区分

org.jeecgframework.jimureportjimureport-spring-boot-starter1.9.1org.jeecgframework.jimureportjimubi-spring-boot-starter1.9.1com.github.xiaoyminknife4j-openapi2-spring-boot-starter

最新版本可以从 http://jimureport.com/doc/log 中查询到

@SpringBootApplication(scanBasePackages = {"me.zhengjie","org.jeecg"})5、实现扩展接口 [@Service](https://my.oschina.net/service)public class OnlDragExternalServiceImpl implements IOnlDragExternalService {}

1.9.0及1.9.0以后版本不需要添加此配置类,1.9.0以前版本需要添加此配置类,否则会影响项目正常启动

@Bean("jmRedisTemplate")public RedisTemplate stringRedisTemplate(RedisConnectionFactory connectionFactory) {RedisTemplate template = new RedisTemplate;//序列化fastjsonRedisSerializer fastJsonRedisSerializer = new FastJsonRedisSerializer(Object.class);// value值的序列化采用fastJsonRedisSerializertemplate.setValueSerializer(fastJsonRedisSerializer);template.setHashValueSerializer(fastJsonRedisSerializer);// fastjson 升级到 1.2.83 后需要指定序列化白名单ParserConfig.getGlobalInstance.addAccept("org.jeecg.modules.drag");// key的序列化采用StringRedisSerializertemplate.setKeySerializer(new StringRedisSerializer);template.setHashKeySerializer(new StringRedisSerializer);template.setConnectionFactory(connectionFactory);return template;}

1)需要把/jimureport和/drag请求放开

//过滤掉积木报表和仪表盘请求路径.antMatchers("/jmreport/**","/drag/**").permitAll

2)在ConfigurerAdapter配置类中添加仪表盘的静态资源访问路径

registry.addResourceHandler("/drag/**").addResourceLocations("classpath:/static/drag/").setCachePeriod(0); #持久层框架minidao:base-package: org.jeecg.modules.jmreport.*,org.jeecg.modules.drag.*9、项目启动访问

来源:津津聊教育

相关推荐