Skip to content
This repository has been archived by the owner on Aug 20, 2019. It is now read-only.

Latest commit

 

History

History
98 lines (65 loc) · 2.79 KB

README_EN.org

File metadata and controls

98 lines (65 loc) · 2.79 KB

JFinal-Ext Introduction

JFinal-Ext(JFE for short) are extentions of JFinal(JF for short) which is a WEB+ORM framework for agile development (https://github.com/jfinal/jfinal) including some commonly used functionalities,such as binding model automatically,registing routes automatically,importing and exporting excel,creating graphical report,unified exception handling,scheduling jobs,etc. for more details,see manual.Some demo code is under test package.

中文手册

https://github.com/b1412/jfinal-ext/blob/master/doc/doc.org

English Manual

https://github.com/b1412/jfinal-ext/blob/master/doc/doc_en.org

Quick Start

maven/gralde users

http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.jfinal%22%20AND%20a%3A%22jfinal-ext%22

gradle

'com.jfinal:jfinal-ext:3.1.2' 

maven

   <dependency>
	    <groupId>com.jfinal</groupId>
	    <artifactId>jfinal-ext</artifactId>
	    <version>3.1.2</version>
   </dependency>

Without Dependency Management Tool

Download url of JFE: http://central.maven.org/maven2/com/jfinal/jfinal-ext/3.1.2/jfinal-ext-3.1.2.jar

Download urls of JFE’s dependencies

JF https://repo1.maven.org/maven2/com/jfinal/jfinal/1.9/jfinal-1.9.jar

Guava https://repo1.maven.org/maven2/com/google/guava/guava/18.0/guava-18.0.jar

Newest snapshot verson

https://oss.sonatype.org/content/repositories/snapshots/com/jfinal/jfinal-ext/

Building From Source Code

JFE is a gradle-based(https://gradle.org/) project,if you are useing grade, you can execute gradle build to build project,also can import the project using gralde’ method.

If you do not set up gradle,and not want to download and set up manully,execute gradlew script in project root path.

windows users should execute

gradlew.bat

linux users should execute

gradlew

After download gralde automatically,execute ‘gradlew build’ to bulid project(maybe a little slow ,because need to download dependencies from maven centre the first time).After successful build,you can find war in the following path

build/libs/jfinal-ext.war

If you want to import the project to debug,eclipse users should execute

gradlew eclipse

idea users should execute

gradlew idea

Other Open Source Projects

JCOP

Extremely simple and flexbile code generator – JFinal-Code-Online