Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Posts about JFinal manual

JFinal Summary

May 14, 2021 10:00 0 Comment JFinal manual

JFinal Summary, JFinal is a Java language-based, extremely fast WEB-ORM development framework with core design goals such as rapid development, low code volume, simpl

0.1 Experience Generator at extreme speed

May 14, 2021 10:00 0 Comment JFinal manual

0.1 Experience Generator at extreme speed, JFinal 2.1 adds Generator to generate Model, BaseModel, MappingKit, DataDictionary files at very quick speed. W, hen using , only four numbers of gene

0.2 JFinal-related build files

May 14, 2021 10:00 0 Comment JFinal manual

0.2 JFinal-related build files, BaseModel is the base class used to be inherited by the final Model, and all getter and setter methods are generated within this document, thus ensuri

0.3 The main advantage of models when combined with bean

May 14, 2021 10:00 0 Comment JFinal manual

0.3 The main advantage of models when combined with bean, Take advantage of a huge number of third-party tools designed for beans, such as jackson, freemarker, Quickly respond to database table changes, refac

0.4 MODEL and BEAN Note

May 14, 2021 10:00 0 Comment JFinal manual

0.4 Model 与 Bean 合体后注意事项, The data in the JSP template output bean will depend on its getter method, and the variable name of the output is the getter method that removes the "

1.1 JFinal creates the project

May 14, 2021 10:00 0 Comment JFinal manual

1.1 JFinal creates the project, JFinal recommends using Eclipse IDE for Java EE Developers as an open environment., Download here, IDEA users get started quickly see, here: http://my

1.3 Modify the web .xml

May 14, 2021 11:00 0 Comment JFinal manual

1.3 Modify the web .xml, Add the following to the web .xml, <filter>, <filter-name>jfinal</filter-name>, <filter-class>com.jfinal.core.JFinalFilter</filter-class>, <init-param

1.4 Add java files

May 14, 2021 11:00 0 Comment JFinal manual

1.4 Add java files, Create a demo package under the project src directory and a demoConfig file under the demo package, as follows:, package demo;, import com.jfinal.conf

1.5 JFinal starts the project

May 14, 2021 11:00 0 Comment JFinal manual

1.5 JFinal starts the project, Create a startup item as shown in the following image:, Right-click Java Application and select the New menu item to create a new Java Application lau

1.6 Turn on the browser to see the effect

May 14, 2021 11:00 0 Comment JFinal manual

1.6 Turn on the browser to see the effect, Open the browser and enter in the address bar: http://localhost/hello, and the output is Hello JFinal World to prove that the project framework is com

Developed under 1.7 Maven

May 14, 2021 11:00 0 Comment JFinal manual

Developed under 1.7 Maven, If you use Maven to manage jar package dependencies, you only need to introduce the following dependency:, <dependency>, <groupId>com.jfinal</groupId>

2.1 Overview

May 14, 2021 11:00 0 Comment JFinal manual

2.1 Overview, A JFinal-based web project requires the creation of a sub-class inherited from the JFinalConfig class, which is used for the entire web, The project i

2.2 configConstant(Constants me)

May 14, 2021 11:00 0 Comment JFinal manual

2.2 configConstant(Constants me), This method is used to configure JFinal constant values, such as the configuration of the development mode constant devMode, the configuration of the

2.3 configRoute(Routes me)

May 14, 2021 11:00 0 Comment JFinal manual

2.3 configRoute(Routes me), This method is used to configure the JFinal access route, and the following code is configured to map "/hello" to the HelloController controller, and

2.4 configPlugin (Plugins me)

May 14, 2021 11:00 0 Comment JFinal manual

2.4 configPlugin (Plugins me), This method is used to configure JFinal's Plugin, and the following code is configured with the C3p0 database connection pool plug-in and the ActiveRe