当前位置:网站首页>Use of lombok annotation @RequiredArgsConstructor
Use of lombok annotation @RequiredArgsConstructor
2022-08-04 01:32:00 【Can't type 314】
lombok注解@RequiredArgsConstructor的使用
前置说明
lombok 提供了很多的注解 , But those are the hosts we usually use
@Data
@Setter
@Getter
@ToString
…
使用 idea 打开 lombok 的源码包

之前看帖子 , see case use @RequiredArgsConstructor 进行依赖注入
于是测试一下
测试案例
HelloController.java
使用@RequiredArgsConstructor依赖注入
@RestController
@RequiredArgsConstructor
public class HelloController {
final StringRedisTemplate stringRedisTemplate;
@RequestMapping("/hello")
public Map hello() {
stringRedisTemplate.opsForValue().set("k1", "v1");
Map<String, String> result = new HashMap<>();
result.put("hello", "world");
return result;
}
final PersonDao personDao;
@GetMapping("/ssm")
public List<PersonEntity> listPerson() {
return personDao.selectList();
}
}
Check out the decompiled source code , 可以通过 idea 直接查看
lectList();
}
}
Check out the decompiled source code , 可以通过 idea 直接查看

边栏推荐
猜你喜欢

Jmeter cross-platform operation CSV files

螺旋矩阵_数组 | leecode刷题笔记
![[store mall project 01] environment preparation and testing](/img/78/415b18a26fdc9e6f59b59ba0a00c4f.png)
[store mall project 01] environment preparation and testing

jmeter分布式压测
一个项目的整体测试流程有哪几个阶段?测试方法有哪些?

计算首屏时间

WMS仓储管理系统能解决电子行业哪些仓库管理问题

- heavy OpenCV 】 【 mapping

redis中常见的问题(缓存穿透,缓存雪崩,缓存击穿,redis淘汰策略)

The 600MHz band is here, will it be the new golden band?
随机推荐
LDO investigation
工程制图复习题
typescript58 - generic classes
持续投入商品研发,叮咚买菜赢在了供应链投入上
C语言:学生管理系统(链表版)
initramfs详解----添加硬盘驱动并访问磁盘
typescript52-简化泛型函数调用
Electronics manufacturing enterprise deployment WMS what are the benefits of warehouse management system
Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
nodejs安装及环境配置
2022 中国算力大会发布“创新先锋”优秀成果
nodejs 安装多版本 版本切换
- heavy OpenCV 】 【 mapping
lombok注解@RequiredArgsConstructor的使用
Flink jdbc connector 源码改造sink之 clickhouse多节点轮询写与性能分析
静态/动态代理模式
JS 保姆级贴心,从零教你手写实现一个防抖debounce方法
this巩固训练,从两道执行题加深理解闭包与箭头函数中的this
Jmeter cross-platform operation CSV files
《Greenplum构建实时数据仓库实践》简介