1.基于注解ioc 1.扫描包<context:component-scan>2.穿件对象交给容器 @Component 相当于:<bean id="" class=""> 3.依赖注入@Autowired 相当于:<property name="" ref=""> 4.@Value 注入基本数据类 ...
分类:
编程语言 时间:
2020-07-05 13:32:26
阅读次数:
79
1.编写切面类 @Component @Aspect @Slf4j public class SellerAuthorizeAspect { @Autowired StringRedisTemplate stringRedisTemplate; @Pointcut(value = "executio ...
分类:
编程语言 时间:
2020-07-04 16:55:54
阅读次数:
133
SpringCloud入门Demo 1、创建一个pom工程,管理版本 2、引入依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http:// ...
分类:
编程语言 时间:
2020-07-02 18:31:23
阅读次数:
46
选中要测试的类, Alt + Enter 出现 create Test, 选中junit4 要在有启动类的项目中创建 注意这两个注解: @SpringBootTest(classes = WebApplication.class) @RunWith(SpringRunner.class) impor ...
分类:
编程语言 时间:
2020-06-28 15:18:52
阅读次数:
57
当您创建多个相同类型的 bean 并希望仅使用属性装配其中一个 bean 时,您可 以使用@Qualifier 注解和 @Autowired 通过指定应该装配哪个确切的 bean 来消除歧义。 例如,这里我们分别有两个类,Employee 和 EmpAccount。在 EmpAccount 中,使用 ...
分类:
其他好文 时间:
2020-06-28 09:17:06
阅读次数:
39
使用@Autowired依赖注入的时候idea会报不建议字段注入的警告 取消这个警告的方法: 上图是没有使用idea汉化的界面 把 √ 取消 就不会出现这个警告了 ...
分类:
其他好文 时间:
2020-06-24 16:31:15
阅读次数:
173
说到spring自动装配的bean大伙都比较了解,@Autowired不就完了么。哈哈,今天我在review的时候发现了这个问题,小伙伴看下代码: @Bean public List<PlatformCheck> platformCheckList() { Map<String, PlatformC ...
分类:
编程语言 时间:
2020-06-23 17:28:38
阅读次数:
54
思路: 代码: @Autowired private RedisTemplate redisTemplate; @Override public void addCart(String skuId, Integer num, String username) { /** * 1)查询redis中的数 ...
分类:
其他好文 时间:
2020-06-19 00:50:05
阅读次数:
67
使用SpringBoot开发过程中,难免需要配置相关数据项,然后在Java代码中@Autowired注入并使用。 我们应该如何读取properties文件中的配置项呢? 基于SpringBoot项目,配置项一般都存放在application.properties文件中。有2种常用的方法: 1.使用@ ...
分类:
编程语言 时间:
2020-06-16 20:30:30
阅读次数:
62
is not a @Sharable handler解决方法 昨天在写编码器的时候,因为是和spring整合,因此在使用编码的时候用Autowired自动注入 @Autowired private ProtocolDecoder protocolDecoder ; @Autowired privat ...
分类:
其他好文 时间:
2020-06-15 19:22:53
阅读次数:
113