
springBoot
一只很菜的程序员
菜鸟成长录
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springBoot拦截器中不能注入Bean
最近使用springBoot发现在拦截器中不能注入Bean,但是在controller中又能正常注入。后面网上找了下,解决办法有两种:第一种:将拦截器注册成bean,就能实现注入@Configuration public class MyWebAppConfigurer extends WebMvcConfigurerAdapter 将拦截器注册成bean@Bean MyInterceptor ...原创 2018-05-13 23:39:30 · 2901 阅读 · 0 评论 -
springBoot集成redis(window)
在springBoot中集成redis(window zip版)解压redis64-3.0.501.zip 即可使用启动redis redis-server.exe redis.windows.conf 启动客户端:redis-cli.exe -h 127.0.0.1(初始redis是无密码的)启动客户端也可以通过redis64-3.0.501(redis解压包)下的redis-cli...原创 2018-05-14 00:13:19 · 967 阅读 · 0 评论