bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

springcloud中怎么利用spring-test實現單元測試-創新互聯

這篇文章將為大家詳細講解有關springcloud中怎么利用spring-test實現單元測試,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

創新互聯成立與2013年,是專業互聯網技術服務公司,擁有項目網站建設、成都網站制作網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元高唐做網站,已為上家服務,為高唐各地企業和個人服務,聯系電話:18982081108

1、新建項目sc-test,對應的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/xsd/maven-4.0.0.xsd">  <modelVersion>4.0.0</modelVersion>  <groupId>spring-cloud</groupId>  <artifactId>sc-test</artifactId>  <version>0.0.1-SNAPSHOT</version>  <packaging>jar</packaging>  <name>sc-test</name>  <url>http://maven.apache.org</url>  <parent>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-parent</artifactId>    <version>2.0.4.RELEASE</version>  </parent>  <dependencyManagement>    <dependencies>      <dependency>        <groupId>org.springframework.cloud</groupId>        <artifactId>spring-cloud-dependencies</artifactId>        <version>Finchley.RELEASE</version>        <type>pom</type>        <scope>import</scope>      </dependency>    </dependencies>  </dependencyManagement>  <properties>    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    <maven.compiler.source>1.8</maven.compiler.source>    <maven.compiler.target>1.8</maven.compiler.target>  </properties>  <dependencies>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-data-redis</artifactId>    </dependency>    <dependency>      <groupId>org.apache.commons</groupId>      <artifactId>commons-pool2</artifactId>    </dependency>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-web</artifactId>    </dependency>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-test</artifactId>      <scope>test</scope>    </dependency>    <!-- <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-test</artifactId>      <scope>test</scope>    </dependency> -->  </dependencies></project>

說明:只要使用spring-boot-starter-test即可,該jar已經包含spring-boot-test

2、新建spring boot啟動類

package sc.test;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class TestApplication {  public static void main(String[] args) {    SpringApplication.run(TestApplication.class, args);  }}

備注:如果沒有該類,spring-test啟動將報錯,見下圖

3、新建操作redis的配置類

package sc.test.config;import java.io.Serializable;import org.springframework.boot.autoconfigure.AutoConfigureAfter;import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;import org.springframework.data.redis.serializer.StringRedisSerializer;@Configuration@AutoConfigureAfter(RedisAutoConfiguration.class)public class RedisCacheAutoConfiguration {  @Bean  public RedisTemplate<String, Serializable> redisCacheTemplate(LettuceConnectionFactory redisConnectionFactory) {    RedisTemplate<String, Serializable> template = new RedisTemplate<>();    //鍵的序列化方式    template.setKeySerializer(new StringRedisSerializer());    //值的序列化方式    template.setValueSerializer(new GenericJackson2JsonRedisSerializer());    template.setConnectionFactory(redisConnectionFactory);    return template;  }}

4、新建配置文件application.yml

server: port: 9005spring: application:  name: sc-redis redis:  host: 127.0.0.1  password:   port: 6379  timeout: 10000 # 連接超時時間(毫秒)  database: 0 # Redis默認情況下有16個分片,這里配置具體使用的分片,默認是0  lettuce:   pool:    max-active: 8 # 連接池較大連接數(使用負值表示沒有限制) 默認 8    max-wait: -1 # 連接池較大阻塞等待時間(使用負值表示沒有限制) 默認 -1    max-idle: 8 # 連接池中的較大空閑連接 默認 8    min-idle: 0 # 連接池中的最小空閑連接 默認 0

5、新建測試類TestRedis.java

package sc.test.unit;import java.io.Serializable;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;import java.util.stream.IntStream;import org.junit.Test;import org.junit.runner.RunWith;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.core.StringRedisTemplate;import org.springframework.test.context.junit4.SpringRunner;import sc.test.model.User;@RunWith(SpringRunner.class)@SpringBootTestpublic class TestRedis {  private static final Logger log = LoggerFactory.getLogger(TestRedis.class);  @Autowired  private StringRedisTemplate stringRedisTemplate;  @Autowired  private RedisTemplate<String, Serializable> redisCacheTemplate;  @Test  public void get() {    // 測試線程安全//    ExecutorService executorService = Executors.newFixedThreadPool(1000);//    IntStream.range(0, 1000).forEach(i ->//        executorService.execute(() -> stringRedisTemplate.opsForValue().increment("kk", 1))//    );    stringRedisTemplate.opsForValue().set("key", "{'name':'huangjinjin', 'age':30}");    final String value = stringRedisTemplate.opsForValue().get("key");    log.info("[字符緩存結果] - [{}]", value);    String key = "manage:user:1";    User u = new User();    u.setId(1L);    u.setAge(30);    u.setPosition("cto");    u.setUserName("good boy");    redisCacheTemplate.opsForValue().set(key, u);    //從緩存獲取User對象    final User user = (User) redisCacheTemplate.opsForValue().get(key);    log.info("[對象緩存結果] - userName={}, age={}, position={}", //        user.getUserName(), user.getAge(), user.getPosition());  }}

6、進行測試

(1)reids server沒有啟動時,運行TestRedis.java(右鍵選擇Junit Test)

連接不上Reids server異常

(2)reids server啟動后時,運行TestRedis.java,出現綠條說明執行代碼成功

日志中打印相關數據,說明數據也存貯到redis server中

7、使用redis-cli驗證數據是否正在存檔redis server中

有了spring-boot-starter-test,就可以不使用restful接口對spring boot寫的接口進行單元測試了。不但可以測試redis,也可以測試數據庫的增刪查改。可以使用spring中的各種注解,注入對象。

關于springcloud中怎么利用spring-test實現單元測試就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

新聞名稱:springcloud中怎么利用spring-test實現單元測試-創新互聯
URL地址:http://vcdvsql.cn/article34/hsipe.html

成都網站建設公司_創新互聯,為您提供網站收錄動態網站外貿網站建設網站內鏈定制開發商城網站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都定制網站建設