91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ngrinder測試工具注意事項

發布時間:2020-06-25 17:10:28 來源:網絡 閱讀:323 作者:知止內明 欄目:編程語言

1、下載源碼

https://github.com/naver/ngrinder/releases
ngrinder測試工具注意事項

2、導入idea

3、修改pom.xml文件:

<groupId>net.sf.grinder</groupId>
            <artifactId>grinder</artifactId>
            <version>3.9.1</version

4、源碼出現報錯修改:


import org.ngrinder.infra.config.Config;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.Profile;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.transaction.annotation.EnableTransactionManagement;

/**
 * Dynamic creation of {@link PerfTestService} depending on the cluster enable or disable.
 *
 * @author JunHo Yoon
 * @since 3.1
 */
@Configuration
@Profile("production")
@EnableScheduling
@EnableTransactionManagement
@EnableAspectJAutoProxy
public class PerfTestServiceConfig implements ApplicationContextAware {

    @Autowired
    private Config config;

    private ApplicationContext applicationContext;

    /**
     * Create PerTest service depending on cluster mode.
     *
     * @return {@link PerfTestService}
     */
    @Bean(name = "perfTestService")
    public PerfTestService perfTestService() {
        if (config.isClustered()) {
            return applicationContext.getAutowireCapableBeanFactory().createBean(ClusteredPerfTestService.class);
        } else {
            return applicationContext.getAutowireCapableBeanFactory().createBean(PerfTestService.class);
        }
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) {
        this.applicationContext = applicationContext;
    }
}

順利啟動成功

ngrinder測試工具注意事項

打包命令:
-DskipTests,不執行測試用例,但編譯測試用例類生成相應的class文件至target/test-classes下。
-Dmaven.test.skip=true,不執行測試用例,也不編譯測試用例類。
一 使用maven.test.skip,不但跳過單元測試的運行,也跳過測試代碼的編譯。
mvn package -Dmaven.test.skip=true

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

威远县| 诸城市| 上犹县| 襄樊市| 甘泉县| 浮梁县| 略阳县| 灯塔市| 呼图壁县| 长岛县| 屏山县| 衢州市| 鄯善县| 永和县| 泗洪县| 宜城市| 罗田县| 新龙县| 绿春县| 彝良县| 天峨县| 铜鼓县| 苏尼特左旗| 武穴市| 阿城市| 石阡县| 利辛县| 玉门市| 于都县| 兴义市| 扎鲁特旗| 渭源县| 江陵县| 吐鲁番市| 双桥区| 法库县| 那坡县| 阿荣旗| 三明市| 铜陵市| 孝感市|