浏览代码

Update actframework project to act-1.5.1 (#3072)

* add act-ebean-pgsql-rythm to compare rythm vs mustache template engine

* update to act-1.5.1, act-ebean2-1.1.5. act-morphia-1.2.2

* update README

* add useSSL=false to mysql db.url configuration
Green Luo 7 年之前
父节点
当前提交
ec6bd1a408

+ 1 - 1
frameworks/Java/act/README.md

@@ -2,7 +2,7 @@
 
 This is the ActFramework portion of a [benchmarking test suite](../) comparing a variety of web development platforms.
 
-This is using [ActFramework R1.4.12](http://actframework.org) to build an application.
+This is using [ActFramework R1.5.1](http://actframework.org) to build an application.
 
 ## Local benchmark result
 

+ 7 - 7
frameworks/Java/act/pom.xml

@@ -22,7 +22,7 @@
   <groupId>com.techempower</groupId>
   <artifactId>actframework</artifactId>
   <packaging>jar</packaging>
-  <version>1.4.13</version>
+  <version>1.5.1</version>
 
   <name>TEB ActFramework Project</name>
   <description>TEB benchmark project with ActFramework</description>
@@ -54,16 +54,16 @@
     <license-maven-plugin.version>1.13</license-maven-plugin.version>
     <markdown-doclet.version>1.4</markdown-doclet.version>
 
-    <act.version>1.4.13</act.version>
-    <act-ebean2.version>1.1.4</act-ebean2.version>
+    <act.version>1.5.1</act.version>
+    <act-ebean2.version>1.1.5</act-ebean2.version>
     <act-mustache.version>1.2.1</act-mustache.version>
-    <act-morphia.version>1.2.1</act-morphia.version>
-    <HikariCP.version>2.7.1</HikariCP.version>
+    <act-morphia.version>1.2.2</act-morphia.version>
+    <HikariCP.version>2.7.3</HikariCP.version>
     <mysql.version>5.1.44</mysql.version>
     <osgl-ut.version>1.0.0-BETA-6</osgl-ut.version>
     <postgres-jdbc.version>42.1.4</postgres-jdbc.version>
     <morphia.version>1.3.2</morphia.version>
-    <ebean.version>10.4.7</ebean.version>
+    <ebean.version>11.5.1</ebean.version>
 
     <app.entry>com.techempower.act.AppEntry</app.entry>
   </properties>
@@ -210,7 +210,7 @@
     <dependency>
       <groupId>io.ebean</groupId>
       <artifactId>ebean-annotation</artifactId>
-      <version>2.4</version>
+      <version>3.4</version>
     </dependency>
 
     <dependency>

+ 1 - 1
frameworks/Java/act/src/main/resources/conf/mysql/db.properties

@@ -1,7 +1,7 @@
 mysql.host=localhost
 
 db.impl=act.db.ebean2.EbeanPlugin
-db.url=jdbc:mysql://${mysql.host}:3306/hello_world?jdbcCompliantTruncation=false&elideSetAutoCommits=true&useLocalSessionState=true&cachePrepStmts=true&cacheCallableStmts=true&alwaysSendSetIsolation=false&prepStmtCacheSize=4096&cacheServerConfiguration=true&prepStmtCacheSqlLimit=2048&zeroDateTimeBehavior=convertToNull&traceProtocol=false&useUnbufferedInput=false&useReadAheadInput=false&maintainTimeStats=false&useServerPrepStmts=true&cacheRSMetadata=true&serverTimezone=UTC
+db.url=jdbc:mysql://${mysql.host}:3306/hello_world?jdbcCompliantTruncation=false&elideSetAutoCommits=true&useLocalSessionState=true&cachePrepStmts=true&cacheCallableStmts=true&alwaysSendSetIsolation=false&prepStmtCacheSize=4096&cacheServerConfiguration=true&prepStmtCacheSqlLimit=2048&zeroDateTimeBehavior=convertToNull&traceProtocol=false&useUnbufferedInput=false&useReadAheadInput=false&maintainTimeStats=false&useServerPrepStmts=true&cacheRSMetadata=true&serverTimezone=UTC&useSSL=false
 db.username=benchmarkdbuser
 db.password=benchmarkdbpass
 db.maxConnections=256