Giter VIP home page Giter VIP logo

fui-maven's Introduction

jcoffee开源框架介绍(maven工程)

1)、安装部署

1.1、安装部署Memcached服务端(admin-ms工程目录tools下有安装文件)

1.1.1、Windows版
    (1). 首先,去下载Windows版本Memcached服务端,到本地硬盘分区
        根目录,比如D盘下的Memcached文件夹。
    (2). 假设已经把服务端文件解压在了Memcached目录,运行CMD打开命
        令行窗口,比如切换到D:\Memcached工作目录。
    (3). 开始安装,输入命令如:memcached -d install,如果需要指
        定端口和IP,则加上-p和-l参数:memcached -d install  -l 127.0.0.1 -p 11211。
    (4). 启动memcached服务,可以直接去服务列表手动启动,也可以命令
        行:memcached -d start。
    (5). 卸载memcached步骤:
        a. 停止服务,memcached -d stop;
        b. 卸载服务,memcached -d uninstall。
    (6). 测试连接:首先用系统盘安装Telnet服务端和客户端组件,在命令
        行窗口输入:telnet 127.0.0.1 11211,如果进入telnet命令窗口,则表示安装成功。
1.1.2、Linux版
    1、下载(最新版)libevent-2.1.8-stable安装
    (1). cd libevent-2.1.8-stable
    (2). ./configure --prefix=/usr/local/libevent
    (3). make
    (4). make install
    2、下载(最新版)memcached-1.5.0安装
    (1). cd memcached-1.5.0
    (2). ./configure --with-libevent=/usr/local/libevent
    (3). make
    (4). make install
    (5). ./memcached -d -m 1024 -u root -p 11211 -P /tmp/memcached.pid

1.2、运行数据库脚本文件(初始数据库)

1.2.1、mysql数据库
1.2.2、oracle数据库
方法一、代码执行(要求数据库实例先创建)
    在spring-dao.xml中找到此配置修改databaseType为对应数据库类型,mybatis.dbType、mybatis.databaseSchemaUpdate
    在jdbc.properties中,databaseSchemaUpdate为true则会初始数据库实例
<bean id="fuiEngineConfiguration" class="com.fui.spring.FuiEngineConfiguration" init-method="init">
    <property name="dataSource" ref="dataSource"/>
    <property name="databaseType" value="${mybatis.dbType}"/>
    <property name="databaseSchemaUpdate" value="${mybatis.databaseSchemaUpdate}"/>
</bean>
方法二、sql脚本编辑器中执行
    先执行fui_user.sql再执行fui.sql

2)、功能介绍

jcoffee是基于spring+spring-mvc开发的一套web框架,其目的是为了集开发、授权等于一体的快速开发平台。

jcoffee有如下主要特点

  • Shiro细粒度权限体系
  • 组织机构、用户灵活配置
  • fui.js快速开发web页面(包括jsp、html等)
  • 集成Activiti工作流引擎,轻松开发业务流程

fui-maven's People

Contributors

xfreng avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.