当前位置:网站首页>Autowired自动装配
Autowired自动装配
2022-08-04 21:39:00 【Pr Young】
自动装配本来指工业上用机器代替人,来自动的完成一些组装任务
在spring和springboot里面是指将spring容器里面的bean和需要这个bean的类,自动组装在一起
(1)引入redis的依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
(2)将RedisTemplate对象注入到Spring容器里面:
@Autowired
private RedisTemplate redisTemplate;
另一个实际的例子:
@Autowired
//自动装配
private AuthenticationManager authenticationManager;
@Override
//返回一个Map,键和值都是字符串
public Map<String, String> login(String username, String password)
{
authenticationManager.authenticate();
}
将AuthenticationManager类的对象authenticationManager注入到spring容器里面
边栏推荐
- 知识分享|如何设计有效的帮助中心,不妨来看看以下几点
- 【QT】回调函数的实现
- proe和creo的区别有哪些
- LayaBox---TypeScript---结构
- DSPE-PEG-Aldehyde, DSPE-PEG-CHO, Phospholipid-Polyethylene Glycol-Aldehyde A hydrophobic 18-carbon phospholipid
- Rocketchip RISC-V Debug调试硬件相关(四)hartIsInReset
- Flutter 实现背景图片毛玻璃效果
- ctfshow终极考核web654
- The upgrade and transformation plan of the fortress machine for medium and large commercial banks!Must see!
- 基于 Milvus 和 ResNet50 的图像搜索(部署及应用)
猜你喜欢
js data type, throttling/anti-shake, click event delegation optimization, transition animation
Analysis and treatment of Ramnit infectious virus
DSPE-PEG-Aldehyde, DSPE-PEG-CHO, Phospholipid-Polyethylene Glycol-Aldehyde A hydrophobic 18-carbon phospholipid
驱动点云格式修改带来的效率提升
js数据类型、节流/防抖、点击事件委派优化、过渡动画
stm32mp157系统移植 | 移植ST官方5.10内核到小熊派开发板
EasyGBS接入最新版海康摄像头后无法传递告警信息该如何解决?
1319_STM32F103串口BootLoader移植
基于 Milvus 和 ResNet50 的图像搜索(部署及应用)
buu web
随机推荐
打卡第 2 天: urllib简记
基于 Milvus 和 ResNet50 的图像搜索(部署及应用)
AXI interface application of Zynq Fpga image processing - the use of axi_lite interface
C language knowledge (1) - overview of C language, data types
JdbcTemplate概述和测试
Qiangwang Cup 2022 - WEB
Exploration and Practice of Database Governance
OD-Model【6】:YOLOv2
零基础都能拿捏的七夕浪漫代码,快去表白或去制造惊喜吧
DSPE-PEG-Aldehyde, DSPE-PEG-CHO, Phospholipid-Polyethylene Glycol-Aldehyde A hydrophobic 18-carbon phospholipid
LayaBox---TypeScript---结构
路由中的meta、params传参的一些问题(可传不可传,为空,搭配,点击传递多次参数报错)
《剑指offer》刷题分类
大势所趋之下的nft拍卖,未来艺术品的新赋能
NFT宝典:你需要知道NFT的术语和定义
SPSS-System Clustering Software Practice
Android 面试——如何写一个又好又快的日志库?
Go----Go 语言基础之标识符、关键字、命名规范、变量、常量
DSPE-PEG-Aldehyde,DSPE-PEG-CHO,磷脂-聚乙二醇-醛基一种疏水18碳磷脂
docker 搭建mysql 主从复制