|
@@ -63,6 +63,12 @@ public class TestController {
|
|
|
|
|
|
@GetMapping("/testSetStr")
|
|
|
public void testSetStr() throws Exception {
|
|
|
+ redisUtil.set("testIncr", "1");
|
|
|
+ redisUtil.incr("testIncr",1);
|
|
|
+ String testIncr = redisUtil.get("testIncr");
|
|
|
+ System.out.println(testIncr);
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
@GetMapping("/testGetStr")
|