SpringBoot+redis 설정 및 테스트 방법

1.프로젝트 생 성 시 redis 의존 선택

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 설정 테스트 내용 은 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기