1 通过配置文件注入
1.配置文件中配置注入信息
2.class中添加注解的接口(set get、 构造函数等)
2.通过注解方式获得
1. 在class中对方法添加注解信息 (类标示 :@Service 、@Repository ; 注入标示:@Resource)
3. 在spring环境中获取对象(从web环境中获取)
WebApplicationContext webApplicationContext = WebApplicationContextUtils.getWebApplicationContext(request.getServletContext()); SystemUserDao systemUserDao = (SystemUserDao)webApplicationContext.getBean("systemUserDao");
spring 获取对象方式
时间: 2024-10-30 04:09:41