bambooBSC

bambooBSC 是一个开源平衡计分卡(BSC)商业智能(BI)Web平台。BSC的愿景、观点、战略目标、关键绩效指标(KPI)、战略地图和 SWOT,PDCA 和 PDCA 报告、时间序列分析。「 bambooBSC is an opensource Balanced Scorecard (BSC) Business Intelligence (BI) Web platform. BSC's Vision, Perspectives, Objectives of strategy, Key Performance Indicators (KPIs), Strategy Map, and SWOT, PDCA & PDCA report, Time Series Analysis. 」

Github星跟蹤圖

bambooBSC 是一个开源平衡计分卡(BSC)商业智能(BI)Web 平台。

特性:

  • BSC 的愿景,观点,战略目标,关键绩效指标(KPI)。 并维护度量数据。
  • KPI报告,个人和组织 BSC 报告。 可以自定义工作区的布局。
  • 战略地图和 BSC SWOT。
  • 提供 SQL 客户端查询结果显示为图表(PIE,BAR,LINE,AREA)。
  • 提供简单的 OLAP 客户端查询。
  • 为移动设备浏览器提供 Sourcecard 查询。
  • PDCA 和 PDCA 报告。

bambooBSC演示视频

bambooBSC 演示视频

谁使用bambooBSC

PROPUESTA DE DISEÑO DEL CUADRO DE MANDO INTEGRAL PARA LA TOMA DE DECISIONES EN EL INSTITUTO FINLAY DE VACUNAS

bambooBSC架构

许可

bambooBSC 是在 Apache 2.0 版的 2.0 版本下发布的。

VM版安装文档:

install-vm-ver.pdf

手动安装文件:

install.pdf

手册:

bamboobsc-guide.pdf

下载:

VM版本(需要VirtualBox): https://github.com/billchen198318/bamboobsc/releas...

手动安装版本:https://github.com/billchen198318/bamboobsc/releas...

联系方式:chen.xin.nien@gmail.com

截图

(恕删略)

主要指標

概覽
名稱與所有者billchen198318/bamboobsc
主編程語言Java
編程語言Java (語言數: 6)
平台BSD, Cross-platform, Linux, Mac, Unix-like, Windows
許可證Apache License 2.0
所有者活动
創建於2015-03-20 01:21:20
推送於2021-06-18 09:05:40
最后一次提交2021-06-18 17:05:40
發布數3
最新版本名稱v0.7.8 (發布於 )
第一版名稱v0.7.6 (發布於 )
用户参与
星數229
關注者數43
派生數109
提交數508
已啟用問題?
問題數95
打開的問題數29
拉請求數2
打開的拉請求數0
關閉的拉請求數1
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?

Features:

  1. BSC's Vision, Perspectives, Objectives of strategy, Key Performance Indicators (KPIs). and Maintain measure-data.
  2. KPI report, Personal and organization BSC report. can custom workspace's layout
  3. Strategy Map, and BSC SWOT.
  4. Provides SQL client query results show as Chart ( PIE, BAR, LINE, AREA ).
  5. Provides a simple OLAP client query.
  6. Provides Sourcecard query for mobile-device browser.
  7. PDCA & PDCA report.

Install on Linux

1. must first install the MySQL and JDK8

# apt-get install mysql-server
# apt-get install oracle-java8-jdk
# java -version

java version "1.8.0"
Java(TM) SE Runtime Environment (build 1.8.0-b132)
Java HotSpot(TM) Client VM (build 25.0-b70, mixed mode)

config MySQL root account's password

# mysqladmin -u root -p password

2. Config MySQL enable lower_case_table_names=1

# service mysql stop
# vi /etc/mysql/my.cnf

add lower_case_table_names=1

[mysqld]
lower_case_table_names=1

and save my.cnf

# service mysql restart

3. Get bambooBSC environment file

# cd /home
# wget --no-check-certificate https://github.com/billchen198318/bamboobsc/releases/download/v0.7.7/bamboobsc-0.7.7-RELEASE.7z

4. Install P7ZIP

# apt-get install p7zip

5. Extract the archive

# p7zip -d bamboobsc-0.7.7-RELEASE.7z

6. Import bbcore.sql to MySQL

# cd /home/bamboobsc-07/
# mysql -u root -p

mysql> create database bbcore;
mysql> exit;

# mysql bbcore -u root -p < bbcore.sql

7. Config applicationContext-dataSource.properties

config A ( CORE system ). /home/bamboobsc-07/apache-tomcat-8.5.39/webapps/core-web/WEB-INF/classes/applicationContext/conf/applicationContext-dataSource.properties

config B (Balanced Scorecard system ). /home/bamboobsc-07/apache-tomcat-8.5.39/webapps/gsbsc-web/WEB-INF/classes/applicationContext/conf/applicationContext-dataSource.properties

config C (Simple OLAP system ). /home/bamboobsc-07/apache-tomcat-8.5.39/webapps/qcharts-web/WEB-INF/classes/applicationContext/conf/applicationContext-dataSource.properties

config D (Mobile web ). /home/bamboobsc-07/apache-tomcat-8.5.39/webapps/gsbsc-mobile-web/WEB-INF/classes/applicationContext/conf/applicationContext-dataSource.properties

settings dataSource.user and dataSource.password
dataSource.user is MySQL account
dataSource.password is MySQL password

example:

dataSource.user=root
dataSource.password=password

8. The need to create the directory folder, for upload and report source file need.

# cd /var
# mkdir gsbsc gsbsc/upload gsbsc/jasperreport

9. Run bambooBSC

# cd /home/bamboobsc-07/apache-tomcat-8.5.39/bin
# chmod a+x catalina.sh
# chmod a+x shutdown.sh
# chmod a+x startup.sh

add JAVA_OPTS="-Xmx2048M -XX:+UseG1GC -Djava.awt.headless=true -Dfile.encoding=UTF-8 -Duser.language=en -Duser.country=US" to catalina.sh

# ./startup.sh

Wait a few minutes,
Use google Chrome or Firefox browser (no support IE) input url ( [IP-Address]:[Port]/core-web/index.action )
example (if server IP-Address is 192.168.1.100) :
192.168.1.100:8080/core-web/index.action

the log file on /tmp/

Install on Amazon EC2 Failed to get local InetAddress for VMID

cannot connect to MySQL database
Please refer to:
http://stackoverflow.com/questions/603351/can-we-set-easy-to-remember-hostnames-for-ec2-instances

Build development environments

System required
A. JDK8
B. Eclipse4 or later version
C. Apache Tomcat8

1. Download archives file

click "Download ZIP" button

2. Unzip the archive file bamboobsc-master.zip

Unzip to C:\home\git\

3. Open eclipse

workspace dir input C:\home\git\bamboobsc-master

4. Configure eclipse

settings Text file encoding to UTF-8

5. Import project

a. core-persistence
b. core-lib
c. core-base
d. core-web
e. gsbsc-standard
f. gsbsc-web
g. qcharts-standard
h. qcharts-web
i. gsbsc-mobile-web
j. gsbsc-persistence
k. qcharts-persistence

config tomcat7 server

config core-lib project "ThirdPartyLib" user libraries
add External JARs: all jar file on C:\home\git\bamboobsc-master\core-web\WEB-INF\lib\

config core-base project "CORE-LIB" user libraries
add External JARs: "core-persistence.jar" and "core-lib.jar" on C:\home\git\bamboobsc-master\core-export-lib\

config gsbsc-standard project "CORE-BASE" user libraries
add External JARs: "core-base.jar", "gsbsc-persistence.jar" on C:\home\git\bamboobsc-master\core-export-lib\

5. Clean Java Problems ( if found Java Problem on Markers )

  1. Clean all project
  2. Restart

no found Java Problem, Environment Setup Complete

bambooBSC development manual

01 - Entitiy

02 - DAO and Service

03 - Logic service

04 - Controller

05 - Program registration and Menu settings

06 - Role and authority settings

07 - Expression support Logic Service

08 - WebService

09 - JasperReport

10 - BPMN resource

11 - Mail

12 - Job Scheduler

13 - Template

14 - Web Context bean

15 - Formula

16 - API