Gatling入門(二)IDEA+Maven編寫指令碼
1. 用scala-archetype-simple新建一個maven專案
2. 修改pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>demo.test</groupId>
<artifactId>gatling-performance</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>GatlingMaven</name>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<encoding>UTF-8</encoding>
<scala.version>2.11.11</scala.version>
<gatling.version>2.1.7</gatling.version>
<gatling-plugin.version>2.1.7</gatling-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>io.gatling.highcharts</groupId>
<artifactId>gatling-charts-highcharts</artifactId>
<version>${gatling.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<plugins>
<!-- Gatling Maven plugin that runs the load-simulation. -->
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>${gatling-plugin.version}</version>
<configuration>
<simulationClass>gatling.demo.HttpSimulation1</simulationClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
3. 編寫指令碼
package demo.test
import io.gatling.core.Predef._
import io.gatling.http.Predef._
/**
* Example Gatling load test that sends two HTTP requests to the same URL.
*/
class HttpSimulation1 extends Simulation {
val theHttpProtocolBuilder = http
.baseURL("http://computer-database.gatling.io")
val theScenarioBuilder = scenario("Scenario1")
.exec(
http("myRequest1").get("/")
)
setUp(
theScenarioBuilder.inject(atOnceUsers(1))
).protocols(theHttpProtocolBuilder)
}
4. 命令列執行 mvn gatling:execute
gatling的版本維持在2.1.7,我升級到2.2.4會報錯。
解決:需要在POM中,新增scala-reflect的依賴
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-reflect</artifactId>
<version>${scala.version}</version>
</dependency>
另外,pom中如果使用scala-2.12.2版本,也會報錯。stackoverflow上說,是library的版本不匹配,一直不知道如何解決,留著坑待日後解決吧。。。
5. 檢視執行結果
https://www.ivankrizsan.se/2016/03/27/creating-a-scala-project-with-maven-dependency-management-for-gatling-testing-in-intellij-idea/
http://stackoverflow.com/questions/41118777/scala-2-12-1-classnotfoundexception-productclass
相關文章
- scala入門之編寫scala指令碼指令碼
- Shell指令碼入門:編寫格式與執行方式指令碼
- 3.1 IDA Pro編寫IDC指令碼入門指令碼
- gdb指令碼編寫指令碼
- Shell 指令碼編寫指令碼
- 油猴指令碼編寫指令碼
- 編寫git指令碼.shGit指令碼
- Gradle與Gatling指令碼整合Gradle指令碼
- EA指令碼編寫要點指令碼
- 編寫執行R指令碼指令碼
- 編譯FFMPEG原始碼的指令碼編寫案例編譯原始碼指令碼
- 第二期:JQ外掛編寫入門(2)
- 編寫shell指令碼的規範指令碼
- 如何編寫高效的 Shell 指令碼指令碼
- 如何使用zx編寫shell指令碼指令碼
- systemd 編寫服務管理指令碼指令碼
- Mac 編寫oracle 連線指令碼MacOracle指令碼
- Linux 指令碼編寫基礎Linux指令碼
- Linux指令碼編寫基礎Linux指令碼
- Redis Lua指令碼完全入門Redis指令碼
- AppleScript指令碼入門APP指令碼
- Velocity指令碼入門教程指令碼
- nGrinder中快速編寫groovy指令碼01-指令碼結構指令碼
- 從零開始編寫指令碼引擎指令碼
- 技能篇:shell教程及指令碼編寫指令碼
- 專案啟動指令碼的編寫指令碼
- shell 指令碼如何編寫-致初學者指令碼
- shell編寫服務啟動指令碼指令碼
- isql指令碼編寫建立資料庫SQL指令碼資料庫
- Linux指令碼編寫基礎(五)Linux指令碼
- Linux 指令碼編寫基礎(轉)Linux指令碼
- 字串編碼入門科普字串編碼
- Oracle Sql loader 匯入資料指令碼的編寫過程OracleSQL指令碼
- iOS彙編入門教程(二)在Xcode工程中嵌入彙編程式碼iOSXCode
- awk命令和指令碼的編寫啟蒙指令碼
- 如何編寫冪等的 Bash 指令碼?- Arslan指令碼
- kernel 4.4.12 外部模組Makefile 指令碼編寫指令碼
- 編寫安裝配置mail服務指令碼AI指令碼