SpringBoot+redis 설정 및 테스트 방법
5628 단어 SpringBootredis배치 하 다.
2.프로필 을 수정 하고 SpringBoot 를 사용 하면 이전의 많은 xml 파일 을 피 할 수 있 습 니 다.
2.1 redis 를 배 운 학생 들 은 모두 이 물건 이 클 러 스 터 버 전도 있 고 단기 버 전도 있다 는 것 을 알 고 있 습 니 다.어느 버 전이 든 설정 이 간단 합 니 다.
2.1.1 먼저 프로필 찾기
2.1.2 그 다음 에 클 러 스 터 버 전 을 설정 하고 설정 파일 에서 편집 하면 됩 니 다.
2.1.3 단일 컴퓨터 버 전 설정
3.테스트
테스트 폴 더 를 찾 으 면 redis 템 플 릿 을 자동 으로 주입 합 니 다.
4.String 과 Hash 형식의 데 이 터 를 각각 테스트 합 니 다.
4.1 조작 문자열
@Test
public void testString(){
// String
ValueOperations<String, String> valueStr = redisTemplate.opsForValue();
//
valueStr.set("goodsProdu"," ");
//
String goodsName = valueStr.get("goodsProdu");
System.out.println(goodsName);
//
Map<String,String> map = new HashMap<>();
map.put("goodsName"," ");
map.put("goodsPrice","88888");
map.put("goodsId","88");
valueStr.multiSet(map);
//
System.out.println("========================================");
List<String>list = new ArrayList<>();
list.add("goodsName");
list.add("goodsPrice");
list.add("goodsId");
list.add("goodsProdu");
List<String> listKeys = valueStr.multiGet(list);
for (String key : listKeys) {
System.out.println(key);
}
}
효과.
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.0.3.RELEASE)
2018-06-21 09:45:31.328 INFO 8848 --- [ main] io.lettuce.core.KqueueProvider : Starting without optional kqueue library
========================================
88888
88
4.2 테스트 hash 데이터
@Test
public void testHash(){
//
HashOperations<String, String, String> opsForHash = redisTemplate.opsForHash();
//
opsForHash.put("orderInfo","orderId","11");
//
String value = opsForHash.get("orderInfo", "orderId");
System.out.println(value);
//
Map<String,String> map = new HashMap<>();
map.put("createTime","2018-06-21");
map.put("orderSn","888888");
opsForHash.putAll("orderInfo",map);
//
List<String> listKey = new ArrayList<>();
listKey.add("createTime");
listKey.add("orderSn");
List<String> info = opsForHash.multiGet("orderInfo", listKey);
for (String s : info) {
System.out.println(s);
}
}
효과.
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.0.3.RELEASE)
2018-06-21 09:48:26.020 INFO 3852 --- [ main] c.b.s.SpringbootRedisApplicationTests : Starting SpringbootRedisApplicationTests on sixfly with PID 3852 (started by Administrator in D:\work_space\springbootdemo\springboot-redis)
2018-06-21 09:48:26.030 INFO 3852 --- [ main] c.b.s.SpringbootRedisApplicationTests : No active profile set, falling back to default profiles: default
2018-06-21 09:48:26.174 INFO 3852 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@2f953efd: startup date [Thu Jun 21 09:48:26 CST 2018]; root of context hierarchy
2018-06-21 09:48:28.398 INFO 3852 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2018-06-21 09:48:32.182 INFO 3852 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService
2018-06-21 09:48:35.054 INFO 3852 --- [ main] c.b.s.SpringbootRedisApplicationTests : Started SpringbootRedisApplicationTests in 11.637 seconds (JVM running for 19.635)
2018-06-21 09:48:36.390 INFO 3852 --- [ main] io.lettuce.core.EpollProvider : Starting without optional epoll library
2018-06-21 09:48:36.398 INFO 3852 --- [ main] io.lettuce.core.KqueueProvider : Starting without optional kqueue library
11
2018-06-21
888888
SpringBoot+redis 설정 및 테스트 방법 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 SpringBoot redis 설정 테스트 내용 은 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Java・SpringBoot・Thymeleaf】 에러 메세지를 구현(SpringBoot 어플리케이션 실천편 3)로그인하여 사용자 목록을 표시하는 응용 프로그램을 만들고, Spring에서의 개발에 대해 공부하겠습니다 🌟 마지막 데이터 바인딩에 계속 바인딩 실패 시 오류 메시지를 구현합니다. 마지막 기사🌟 src/main/res...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.