当前位置:网站首页>lombok注解@RequiredArgsConstructor的使用
lombok注解@RequiredArgsConstructor的使用
2022-08-04 01:28:00 【不会打字314】
lombok注解@RequiredArgsConstructor的使用
前置说明
lombok 提供了很多的注解 , 但是我们平时使用的主机就是那几个
@Data
@Setter
@Getter
@ToString
…
使用 idea 打开 lombok 的源码包

之前看帖子 , 看见案例使用 @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();
}
}
查看反编译的源码 , 可以通过 idea 直接查看
lectList();
}
}
查看反编译的源码 , 可以通过 idea 直接查看

边栏推荐
- KunlunBase 1.0 is released!
- 特征值与特征向量
- nodejs+express实现数据库mysql的访问,并展示数据到页面上
- boot issue
- How to copy baby from Taobao (or Tmall store) through API interface to Pinduoduo interface code docking tutorial
- 工程制图平面投影练习
- typescript57-数组泛型接口
- 一篇文章看懂JS闭包,从执行上下文角度解析有趣的闭包
- 【虚拟化生态平台】虚拟化平台esxi挂载USB硬盘
- Observability:你所需要知道的关于 Syslog 的一些知识
猜你喜欢
随机推荐
Mvc, Mvp and Mvvm
Apache DolphinScheduler actual combat task scheduling platform - a new generation of distributed workflow
Google Earth Engine - Calculates the effective width of rivers using publicly available river data
[store mall project 01] environment preparation and testing
- heavy OpenCV 】 【 mapping
pygame 中的transform模块
114. How to find the cause of Fiori Launchpad routing error by single-step debugging
MongoDB数据接入实践
LDO investigation
FeatureNotFound( bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested:
JS 保姆级贴心,从零教你手写实现一个防抖debounce方法
Sticker Spelling - Memory Search / Shape Pressure DP
nodejs install multi-version version switching
ASP.NET 获取数据库的数据并写入到excel表格中
OpenCV如何实现Sobel边缘检测
在Activity中获取另一个XML文件的控件
电子组装行业对MES管理系统的需求分析
js函数防抖和函数节流及其使用场景
Getting started with MATLAB 3D drawing command plot3
无代码7月热讯 | 微软首推数字联络中心平台;全球黑客马拉松...
![[store mall project 01] environment preparation and testing](/img/78/415b18a26fdc9e6f59b59ba0a00c4f.png)








