SpringBoot开发(7)——整合redis
在pom.xml中添加依赖即可 <!–redis依赖–> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> … 阅读更多 »SpringBoot开发(7)——整合redis
在pom.xml中添加依赖即可 <!–redis依赖–> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> … 阅读更多 »SpringBoot开发(7)——整合redis
在pom.xml中添加依赖 <!–aop依赖–> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> 自定义注解,后面直接通… 阅读更多 »SpringBoot开发(6)——使用aop
在参数前加上对应的注解,就可以获得解析后的参数,因此在需要解析参数的方法上加上注解 //在需要获得解析参数前加上注解,例如@CurrentUserId public ResponseResult findAll(@CurrentUserId String userId){ System.out.println(userId); } 在cxsbg包下新建resovler包,在resolver包中定义… 阅读更多 »SpringBoot开发(5)——自定义参数实现