在Windows上使用Redis进行开发 Windows 上不正式支持 Redis。但是,您可以按照以下说明在 Windows 上安装 Redis 进行开发,本教程采用WSL方式安装Linux虚拟环境(并非唯一方式,也可通过其他方式安装Linux虚拟环境,本教程不过多展开)。 1. 在Windows上安装Linux虚拟环境 要在 Windows 上安装 Redis,您首先需要启用WSL2(适用
If you have any questions, you can either leave a message or send a E-mail. We will respond as soon as possible. Email: wxxcxzzg@163.com Phone: +8618260035209
首先写了一个简单的controller @RestControllerpublic class HiController {@Value("${server.port}")String port;@GetMapping("/hi")public String home(@RequestParam String name) {return "hi "+name+",i am from por