1、開發環境html
一、windows 7 企業版java
二、Eclipse IDE for Enterprise Java Developers Version: 2019-03 (4.11.0)mysql
三、JDK 1.8web
四、Maven 3.5.2sql
五、MariaDB數據庫
六、Tomcat 8.5apache
2、基礎配置windows
一、Eclipse中Maven的設置以下圖tomcat
二、數據庫使用默認的test庫,建立表categoryapp
1 CREATE TABLE category 2 ( 3 categoryid INT AUTO_INCREMENT PRIMARY KEY, 4 categoryname VARCHAR(10) NOT NULL 5 ); 6 7 INSERT INTO category VALUES(NULL, '圖書'), (NULL, '美妝'); 8 9 SELECT * FROM category;
3、環境搭建
一、建立Maven工程
二、使用默認工做空間
三、選擇工程初始類型webapp
四、填寫包名和工程名
五、點擊Finish,開始建立Maven工程。建立完畢後,會提示找不到Servlet包的錯誤。能夠經過導入Tomcat解決該問題。
刪除默認的index.jsp文件,後面咱們使用html頁面。在webapp目錄的WEB-INF目錄下新建classes目錄。最終的目錄結構以下
六、編寫pom.xml文件
1 <project xmlns="http://maven.apache.org/POM/4.0.0" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4 <modelVersion>4.0.0</modelVersion> 5 <groupId>cn.temptation</groupId> 6 <artifactId>jfinalDemo</artifactId> 7 <packaging>war</packaging> 8 <version>0.0.1-SNAPSHOT</version> 9 <name>jfinalDemo Maven Webapp</name> 10 <url>http://maven.apache.org</url> 11 <dependencies> 12 <dependency> 13 <groupId>junit</groupId> 14 <artifactId>junit</artifactId> 15 <version>3.8.1</version> 16 <scope>test</scope> 17 </dependency> 18 <!-- 添加jfinal依賴 --> 19 <dependency> 20 <groupId>com.jfinal</groupId> 21 <artifactId>jfinal</artifactId> 22 <version>3.8</version> 23 </dependency> 24 <!-- 添加jetty server依賴 --> 25 <dependency> 26 <groupId>com.jfinal</groupId> 27 <artifactId>jetty-server</artifactId> 28 <version>2019.3</version> 29 <!-- 使用IDEA開發時,scope設置成爲compile,不然提示缺乏jar包,打包時記得要改回 provided --> 30 <scope>provided</scope> 31 </dependency> 32 <!-- mysql驅動 --> 33 <dependency> 34 <groupId>mysql</groupId> 35 <artifactId>mysql-connector-java</artifactId> 36 <version>5.1.37</version> 37 </dependency> 38 <!-- druid鏈接池 --> 39 <dependency> 40 <groupId>com.alibaba</groupId> 41 <artifactId>druid</artifactId> 42 <version>1.0.29</version> 43 </dependency> 44 </dependencies> 45 <build> 46 <finalName>jfinalDemo</finalName> 47 </build> 48 </project>
七、編寫web.xml配置文件,主要就是設置一下過濾器
1 <!DOCTYPE web-app PUBLIC 2 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" 3 "http://java.sun.com/dtd/web-app_2_3.dtd" > 4 5 <web-app> 6 <filter> 7 <filter-name>jFinal</filter-name> 8 <filter-class>com.jfinal.core.JFinalFilter</filter-class> 9 <init-param> 10 <param-name>configClass</param-name> 11 <param-value>cn.temptation.config.MyConfig</param-value> 12 </init-param> 13 </filter> 14 <filter-mapping> 15 <filter-name>jFinal</filter-name> 16 <url-pattern>/*</url-pattern> 17 </filter-mapping> 18 </web-app>
八、編寫數據庫鏈接配置文件db.properties,爲了能在框架中讀取到該配置文件內容,把該文件放在前面建立的webapp目錄的WEB-INF目錄下的classes目錄中。
1 jdbcUrl = jdbc:mysql://localhost/test?characterEncoding=utf8 2 user = root 3 password = sa 4 devMode = true 5 showSql = true
九、編寫實體類Category,由於要使用ActiveRecord,因此從com.jfinal.plugin.activerecord.Model繼承
1 package cn.temptation.bean; 2 3 import com.jfinal.plugin.activerecord.Model; 4 5 @SuppressWarnings("serial") 6 public class Category extends Model<Category> { 7 8 }
十、編寫配置類MyConfig
1 package cn.temptation.config; 2 3 import com.jfinal.config.Constants; 4 import com.jfinal.config.Handlers; 5 import com.jfinal.config.Interceptors; 6 import com.jfinal.config.JFinalConfig; 7 import com.jfinal.config.Plugins; 8 import com.jfinal.config.Routes; 9 import com.jfinal.core.JFinal; 10 import com.jfinal.plugin.activerecord.ActiveRecordPlugin; 11 import com.jfinal.plugin.druid.DruidPlugin; 12 import com.jfinal.template.Engine; 13 14 import cn.temptation.bean.Category; 15 import cn.temptation.web.CategoryController; 16 17 public class MyConfig extends JFinalConfig { 18 /** 19 * 配置常量 20 */ 21 @Override 22 public void configConstant(Constants me) { 23 // 加載數據庫配置文件 24 loadPropertyFile("db.properties"); 25 me.setDevMode(true); 26 // 開啓支持註解,支持 Controller、Interceptor 之中使用 @Inject 注入業務層,而且自動實現 AOP 27 me.setInjectDependency(true); 28 } 29 30 @Override 31 public void configRoute(Routes me) { 32 me.add("/", CategoryController.class); 33 } 34 35 /** 36 * 配置插件 37 */ 38 @Override 39 public void configPlugin(Plugins me) { 40 // 配置druid鏈接池 41 DruidPlugin db = new DruidPlugin(getProperty("jdbcUrl"), getProperty("user"), getProperty("password")); 42 me.add(db); 43 // ActiveRecord是做爲JFinal的Plugin而存在的,因此使用時須要在JFinalConfig中配置ActiveRecordPlugin 44 ActiveRecordPlugin activeRecordPlugin = new ActiveRecordPlugin(db); 45 activeRecordPlugin.addMapping("category", Category.class); 46 // 展現sql語句 47 activeRecordPlugin.setShowSql(true); 48 me.add(activeRecordPlugin); 49 } 50 51 /** 52 * 配置全局攔截器 53 */ 54 @Override 55 public void configInterceptor(Interceptors me) { 56 57 } 58 59 /** 60 * 配置處理器 61 */ 62 @Override 63 public void configHandler(Handlers me) { 64 65 } 66 67 /** 68 * 配置模板 69 */ 70 @Override 71 public void configEngine(Engine me) { 72 73 } 74 75 /** 76 * 啓動方法 77 * 78 * @param args 79 */ 80 public static void main(String[] args) { 81 JFinal.start("src/main/webapp", 8080, "/", 5); 82 } 83 }
十一、編寫控制器CategoryController,從com.jfinal.core.Controller繼承
1 package cn.temptation.web; 2 3 import java.util.List; 4 5 import com.jfinal.core.Controller; 6 7 import cn.temptation.bean.Category; 8 9 public class CategoryController extends Controller { 10 private Category categoryDao = new Category().dao(); 11 12 public void index() { 13 List<Category> categories = categoryDao.find("SELECT * FROM category"); 14 setAttr("categories", categories); 15 render("category.html"); 16 } 17 }
十二、在webapp目錄下新建category.html,將服務端獲取到的類別數據循環取出呈現
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>類別列表</title> 6 <style> 7 .tblCategory { 8 border: 1px solid black; 9 border-collapse: collapse; 10 } 11 </style> 12 </head> 13 <body> 14 <table border="1" class="tblCategory"> 15 <tr> 16 <th width="100px">類別編號</th> 17 <th width="150px">類別名稱</th> 18 </tr> 19 #for(category:categories) 20 <tr> 21 <td>#(category.categoryid)</td> 22 <td>#(category.categoryname)</td> 23 </tr> 24 #end 25 </table> 26 </body> 27 </html>
1三、啓動程序,在MyConfig類中直接運行(ctrl + F11)或調試程序(F11),一切順利的話,能夠看到以下內容。這是整合了jetty做爲web容器的玩法
1四、 整個工程的目錄結構
1五、要發佈成war包,丟到tomcat中運行也很簡單,只要在工程上右鍵找到Run AS----->Maven build,輸入clean package,再點擊Run,便可打war包。把生成好的war包丟到tomcat的webapps目錄下,啓動tomcat運行吧,注意,tomcat下訪問的路徑默認是要帶上該工程的目錄的,好比本例子中訪問的路徑就應該是http://localhost:8080/jfinalDemo/