spring cloud 가 spring-test 를 어떻게 사용 하여 유닛 테스트 를 하 는 지 상세 하 게 설명 합 니 다.
9463 단어 springcloudspring-test유닛 테스트
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;
@SpringBootApplication
public 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: 9005
spring:
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)
@SpringBootTest
public 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 서버 가 시작 되 지 않 았 을 때 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 의 각종 주 해 를 사용 하여 대상 을 주입 할 수 있 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.