|
@@ -5,6 +5,8 @@ import com.fjhx.constants.WeChatConstants;
|
|
|
import com.fjhx.utils.aes.AesException;
|
|
|
import com.fjhx.utils.aes.WXBizMsgCrypt;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springblade.core.redis.cache.BladeRedis;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -31,6 +33,9 @@ import java.io.StringReader;
|
|
|
@RequestMapping("/callback")
|
|
|
public class TestController {
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private BladeRedis bladeRedis;
|
|
|
+
|
|
|
|
|
|
@GetMapping(value = "/test")
|
|
|
public String test() {
|